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