GetByKey Method (DataLogGrpOperLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The GetByKey() method retrieves the specified data log group/operation link record from the Data_Log_Grp_Oper_Link table.
'Declaration
Public Shared Function GetByKey( _
ByVal grpId As Integer, _
ByVal processId As String, _
ByVal operId As String _
) As DataSet
'Usage
Dim grpId As Integer
Dim processId As String
Dim operId As String
Dim value As DataSet
value = DataLogGrpOperLink.GetByKey(grpId, processId, operId)
Parameters
- grpId
- Required. Holds the ID of the data log group that is being linked.
- processId
- Required. Holds the process ID of the operation that is being linked.
- operId
- Required. Holds the operation ID of the operation that is being linked.
Return Value
Returns a DataSet that contains the DataRow of the specified record in the Data_Log_Grp_Oper_Link table. If no matching record is found, an empty DataSet is returned.