DeleteAll Method (OperEntSpec)
- Last UpdatedNov 06, 2025
- 2 minute read
The DeleteAll() method removes one or more operation entity specification records from the Oper_Ent_Spec table, as specified by the filter parameters. Passing no filter parameters will remove all operation entity specification 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), _
ByVal verId As String, _
ByVal specId As String _
)
'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)
Dim verId As String
Dim specId As String
OperEntSpec.DeleteAll(sessionId, processId, operId, stepNo, entId, verId, specId)
public static void DeleteAll(
int sessionId,
string processId,
string operId,
Nullable<int> stepNo,
Nullable<int> entId,
string verId,
string specId
)
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 a process.
- operId
- Optional filter parameter. Holds the ID of an operation.
- stepNo
- Optional filter parameter. Holds a step number.
- entId
- Optional filter parameter. Holds the ID of an entity.
- verId
- Optional filter parameter. Holds a specification version.
- specId
- Optional filter parameter. Holds the ID of a specification for an operation.