DeleteAll Method (StdOperStepEntExclusion)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more standard operation step entity exclusion records from the Std_Oper_Step_Ent_Exc table, as specified by the filter parameters. Passing no filter parameters will remove all standard operation step entity exclusion records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal operId As String, _
ByVal stepNo As Nullable(Of Integer), _
ByVal entId As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim operId As String
Dim stepNo As Nullable(Of Integer)
Dim entId As Nullable(Of Integer)
StdOperStepEntExclusion.DeleteAll(sessionId, operId, stepNo, entId)
public static void DeleteAll(
int sessionId,
string operId,
Nullable<int> stepNo,
Nullable<int> entId
)
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 a step number.
- entId
- Optional filter parameter. Holds the ID of an entity for which the step is being excluded.