GetByKey Method (OperStepGroup)
- Last UpdatedNov 06, 2025
- 1 minute read
The GetByKey() method retrieves the specified operation step group record from the Oper_Step_Grp table.
'Declaration
Public Shared Function GetByKey( _
ByVal processId As String, _
ByVal operId As String, _
ByVal stepGrpId As Integer _
) As DataSet
'Usage
Dim processId As String
Dim operId As String
Dim stepGrpId As Integer
Dim value As DataSet
value = OperStepGroup.GetByKey(processId, operId, stepGrpId)
Parameters
- processId
- Required. Holds the ID of the process to which the operation belongs.
- operId
- Required. Holds the ID of the 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 operation step group in the Oper_Step_Grp table. If no matching record for the specified operation step group is found, an empty DataSet is returned.