GetByKey Method (OperSpecVer)
- Last UpdatedNov 06, 2025
- 1 minute read
The GetByKey() method retrieves the specified operation specification version record from the Oper_Spec_Ver table.
'Declaration
Public Shared Function GetByKey( _
ByVal processId As String, _
ByVal operId As String, _
ByVal verId As String _
) As DataSet
'Usage
Dim processId As String
Dim operId As String
Dim verId As String
Dim value As DataSet
value = OperSpecVer.GetByKey(processId, operId, verId)
Parameters
- processId
Required. Holds the ID of the process that identifies the record to be retrieved.
- operId
Required. Holds the ID of the operation that identifies the record to be retrieved.
- verId
Required. Holds the ID of the specification version that identifies the record to be retrieved.
Return Value
Returns a DataSet that contains the DataRow of the specified operation specification version in the Oper_Spec_Ver table. If no matching record for the specified operation specification version is found, an empty DataSet is returned.