DeleteAll Method (CertOperStepLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more certifcation/operation step link records from the Cert_Oper_Step_Link table, as specified by the filter parameters. Passing no filter parameters will remove all certification/operation step link records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal certName As String, _
ByVal processId As String, _
ByVal operId As String, _
ByVal stepNo As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim certName As String
Dim processId As String
Dim operId As String
Dim stepNo As Nullable(Of Integer)
CertOperStepLink.DeleteAll(sessionId, certName, processId, operId, stepNo)
public static void DeleteAll(
int sessionId,
string certName,
string processId,
string operId,
Nullable<int> stepNo
)
Parameters
- sessionId
Required. Holds the session ID and thus the user who is making this method call.
- certName
Optional filter parameter. Holds the name of the certification linked to the operation step(s).
- processId
Optional filter parameter. Holds the ID of the process to which the operation(s) belongs.
- operId
Optional filter parameter. Holds the ID of the operation to which the step(s) belong.
- stepNo
Optional filter parameter. Holds the step number which is linked to the certification(s).