DeleteAll Method (OperStepEntExclusion)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method deletes one ore more operation step entity exclusion records from the Oper_Step_Ent_Exc table, as specified by the filter parameters. Passing no filter parameters will delete all operation step entity exclusion records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal processId As String, _
ByVal operId As String, _
ByVal stepNo As Nullable(Of Integer), _
ByVal entId As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim processId As String
Dim operId As String
Dim stepNo As Nullable(Of Integer)
Dim entId As Nullable(Of Integer)
OperStepEntExclusion.DeleteAll(sessionId, processId, operId, stepNo, entId)
public static void DeleteAll(
int sessionId,
string processId,
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.
- processId
- Optional filter parameter. Holds the ID of the process to which the operation belongs.
- operId
- Optional filter parameter. Holds the ID of the operation to which the step belongs.
- stepNo
- Optional filter parameter. Holds the step number.
- entId
- Optional filter parameter. Holds the ID of the entity.