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