DeleteAll Method (ItemProcessLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more item/process link records from the Item_Process_Link table, as specified by the filter parameters. Passing no filter parameters will remove all item/process link records from the table.
The DeleteAll() method deletes one or more item/process link records from the Item_Process_Link table, as specified by the filter parameters. Passing no filter parameters will delete all item/process link records from the table.'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal itemId As String, _
ByVal processId As String _
)
'Usage
Dim sessionId As Integer
Dim itemId As String
Dim processId As String
ItemProcessLink.DeleteAll(sessionId, itemId, processId)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- itemId
- Optional filter parameter. Holds the ID of an item whose item/process links are to be deleted.
- processId
- Optional filter parameter. Holds the ID of a process whose item/process links are to be deleted.