Delete Method (ItemTransfer)
- Last UpdatedMar 17, 2026
- 1 minute read
The Delete() method deletes the specified item transfer record from the Item_Transfer table.
'Declaration
Public Shared Sub Delete( _
ByVal sessionId As Integer, _
ByVal transId As Integer, _
ByVal modId As String _
)
'Usage
Dim sessionId As Integer
Dim transId As Integer
Dim modId As String
ItemTransfer.Delete(sessionId, transId, modId)
Parameters
- sessionId
Required. Holds the session ID and thus the user who is making this method call.
- transId
Required. Holds the ID of the item transfer.
- modId
Required. Holds a modification ID value to avoid data contention. The passed value must match the record's modification ID value for the record to be deleted.