I been trying to uplift a customization from Vantage to E10 in script editor. I have gotten it down to two errors (searching through the forum - thank you everybody) but am stuck. Any help would be appreciate it.
I have added the references to the screen but the only one i couldnt add was Epicor.Mfg.IF.IInventoryQtyAdj.dll cant seem to find this DLL in E10 client folder. i added
I am not an expert but i get the gist of it. This was created before i arrived and we are currently upgrading.
Private Sub btnInvTransfer_Click(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles btnInvTransfer.Click
'// ** Place Event Handling Code Here **
If Validate() =True Then
Dim _qtyAdj As **InventoryQtyAdj**
Dim invAdjDS As InventoryQtyAdjDataSet
Try
_qtyAdj = New **InventoryQtyAdj**(oTrans.Session.ConnectionPool)
invAdjDS = New InventoryQtyAdjDataSet()
invAdjDS=_qtyAdj.GetInventoryQtyAdj(edvPart.dataView(edvPart.Row)("PartNum"))
Dim ucbTo As Ice.Lib.FrameWork.EpiUltraCombo
ucbTo = ucbToWarehouse
Compiling Custom Code …
----------errors and warnings------------
Error: BC30002 - line 154 (1311) - Type ‘InventoryQtyAdj’ is not defined. (In Bold Above)
Error: BC30002 - line 157 (1314) - Type ‘InventoryQtyAdj’ is not defined. (In Bold Above)
Dim _boR As BOReader = new BOReader(PartForm.Session.ConnectionPool)
I know connectionpool is no longer available in E10. Trying to fix the this piece of the code.
Dim _boR As BOReader = new BOReader(PartForm.Session.ConnectionPool)
Dim ds As DataSet = _boR.GetList(“Warehse”,“Plant=’” & PartForm.Session.PlantID & “’”,“WarehouseCode,Description”)