DeleteAll Method (StdOperStep)
- Last UpdatedMar 17, 2026
- 1 minute read
The DeleteAll() method removes one or more standard operation step records from the Std_Oper_Step table, as specified by the filter parameters. Passing no filter parameters will remove all standard operation step records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal operId As String, _
ByVal stepNo As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim operId As String
Dim stepNo As Nullable(Of Integer)
StdOperStep.DeleteAll(sessionId, operId, stepNo)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- operId
- Optional filter parameter. Holds the ID of the operation to which the step belongs.
- stepNo
- Optional filter parameter. Holds the number of the operation step.