PopupInventoryTransfer Method (StorageExec)
- Last UpdatedNov 06, 2025
- 2 minute read
The PopupInventoryTransfer method opens the Multiple Inventory Transfers dialog to dispaly the transfer out and reclassify information or the Inventory Transfer dialog to display the other transfer types information.
'Declaration
Public Function PopupInventoryTransfer( _
ByVal transferOption As Storage.TransferOption, _
ByVal entID As Integer, _
ByVal itemID As String, _
ByVal itemDesc As String, _
ByVal numDecimals As Object, _
ByVal units As String, _
ByVal lotNo As Object, _
ByVal gradeCd As Object, _
ByVal gradeDesc As String, _
ByVal statusCd As Object, _
ByVal statusDesc As String, _
ByVal qtyLeft As Object, _
ByVal expiryDate As Object, _
ByVal rowID As Object, _
ByVal dtInv As Fact.Controls.FactGrid _
) As Boolean
public bool PopupInventoryTransfer(
Storage.TransferOption transferOption,
int entID,
string itemID,
string itemDesc,
object numDecimals,
string units,
object lotNo,
object gradeCd,
string gradeDesc,
object statusCd,
string statusDesc,
object qtyLeft,
object expiryDate,
object rowID,
Fact.Controls.FactGrid dtInv
)
Parameters
- transferOption
- Required. Holds the type of the transfer.
- entID
Required. Holds the ID of the entity.
- itemID
- Optional. Holds the ID of the item.
- itemDesc
- Optional. Holds the description of the item.
- numDecimals
Optional. Holds the number of decimal places that are used for the item.
- units
Optional. Holds the description of the units that are used by the item.
- lotNo
- Optional. Holds the lot number.
- gradeCd
- Optional. Holds the grade code of the item.
- gradeDesc
Optional. Holds the description of the item grade.
- statusCd
Optional. Holds the status code of the item.
- statusDesc
Optional. Holds the description of the item status.
- qtyLeft
- Optional. Holds the quantity left in the inventory.
- expiryDate
Optional. Holds the expiry date and time of the item in the local time of the storage entity.
- rowID
- Optional. Holds the ID of the row in the database table.
- dtInv
- Optional. Holds the inventory grid for multiple item transfers.
Return Value
Returns true if the transfer takes place or false if the transfer does
not take place.