GetByKey Method (CertStdOperStepLink)
- Last UpdatedMar 17, 2026
- 1 minute read
The GetByKey() method retrieves the specified certification/standard operation step link record from the Cert_Std_Oper_Link table.
'Declaration
Public Shared Function GetByKey( _
ByVal certName As String, _
ByVal operId As String, _
ByVal stepNo As Integer _
) As DataSet
'Usage
Dim certName As String
Dim operId As String
Dim stepNo As Integer
Dim value As DataSet
value = CertStdOperStepLink.GetByKey(certName, operId, stepNo)
Parameters
- certName
Required. Holds the name of the certification linked to the standard operation step.
- operId
- Required. Holds the ID of the standard operation to which the step belongs.
- stepNo
Required. Holds the step number linked to the certification
Return Value
Returns a DataSet that contains the DataRow of the specified certification/standard operation step link in the Cert_Std_Oper_Link table. If no matching record for the specified certification/standard operation step link is found, an empty DataSet is returned.