GetAvailable Method (CertStdOperLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The GetAvailable() method retrieves all the appropriate certifications that are not already linked to the specified standard operation.
'Declaration
Public Shared Function GetAvailable( _
ByVal sessionId As Integer, _
ByVal operId As String _
) As DataSet
'Usage
Dim sessionId As Integer
Dim operId As String
Dim value As DataSet
value = CertStdOperLink.GetAvailable(sessionId, operId)
Parameters
- sessionId
Optional. Holds the session ID and thus the user who is making this method call.
- operId
Required. Holds the ID of the standard operation.
Return Value
Returns a DataSet that contains records for all the certification that are not linked to the specified standard operation. The returned records are from the Cert_Type table. If no matching certifications are found, an empty DataSet is returned.
The columns of the returned DataSet are described below.
|
ColumnName |
Description |
|---|---|
|
cert_name |
A string that is the name of the certification. |
|
max_level |
An integer that is the maximum level for the certication. |
|
cert_audit |
A flag that indicates whether or not the certification is an audit certification. |