DeleteAll Method (StdOperEntSpec)
- Last UpdatedNov 06, 2025
- 2 minute read
The DeleteAll() method removes one or more specification records from the Std_Oper_Ent_Spec table, as specified by the filter parameters. Passing no filter parameters will remove all specification 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), _
ByVal verId As String, _
ByVal specId As String _
)
'Usage
Dim sessionId As Integer
Dim operId As String
Dim stepNo As Nullable(Of Integer)
Dim entId As Nullable(Of Integer)
Dim verId As String
Dim specId As String
StdOperEntSpec.DeleteAll(sessionId, operId, stepNo, entId, verId, specId)
public static void DeleteAll(
int sessionId,
string operId,
Nullable<int> stepNo,
Nullable<int> entId,
string verId,
string specId
)
Parameters
- sessionId
- Required. A long to identify the session and thus the user who is making this call.
- operId
- Optional. Holds the ID of the standard operation.
- stepNo
- Optional. Holds the number of the step with which the specification is associated. -1 means the specification is not associated with a step.
- entId
- Optional. Holds the ID of the entity on which the standard operation is being done.
- verId
- Optional. Holds a specification version.
- specId
- Optional. Holds the spec for the standard operation.