GetByKey Method (ItemProcessLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The GetByKey() method retrieves the specified item/process link record from the Item_Process_Link table.
'Declaration
Public Shared Function GetByKey( _
ByVal itemId As String, _
ByVal processId As String _
) As DataSet
'Usage
Dim itemId As String
Dim processId As String
Dim value As DataSet
value = ItemProcessLink.GetByKey(itemId, processId)
Parameters
- itemId
- Required. Holds the ID of the item whose link is being retrieved.
- processId
- Required. Holds the ID of the process whose link is being retrieved.
Return Value
Returns a DataSet that contains the DataRow of the specified item/process link in the Item_Process_Link table. If no matching record for the specified item/process link is found, an empty DataSet is returned.