DeleteAll Method (StdOperStepGrp)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more standard operation step group records from the Std_Oper_Step_Grp table, as specified by the filter parameters. Passing no filter parameters will remove all standard operation step group records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal operId As String, _
ByVal stepGrpId As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim operId As String
Dim stepGrpId As Nullable(Of Integer)
StdOperStepGrp.DeleteAll(sessionId, operId, stepGrpId)
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 standard operation to which the step group belongs.
- stepGrpId
Optional filter parameter. Holds the ID of the step group to be deleted.
For input parameters that are not to be included as a filter, pass a null.
CAUTION: Use extreme care when calling the DeleteAll() method, as mistakes in the input parameters can result in the unintentional deletion of many or all records from the table.
The required parameters for this method must pass a value. They cannot be empty or null.