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