Delete Method (ItemProcessLink)
- Last UpdatedMar 17, 2026
- 1 minute read
The Delete() method deletes the specified item/process link record from the Item_Process_Link table.
'Declaration
Public Shared Sub Delete( _
ByVal sessionId As Integer, _
ByVal itemId As String, _
ByVal processId As String, _
ByVal modId As String _
)
'Usage
Dim sessionId As Integer
Dim itemId As String
Dim processId As String
Dim modId As String
ItemProcessLink.Delete(sessionId, itemId, processId, modId)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- itemId
Required. Holds the ID of the item whose link record is being deleted.
- processId
Required. Holds the ID of the process whose link record is being deleted.
- 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.