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