DeleteAll Method (JobSpec)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more job specification records from the Job_Spec table, as specified by the filter parameters. Passing no filter parameters will remove all job specification records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal woId As String, _
ByVal operId As String, _
ByVal seqNo As Nullable(Of Integer), _
ByVal stepNo As Nullable(Of Integer), _
ByVal specId As String _
)
'Usage
Dim sessionId As Integer
Dim woId As String
Dim operId As String
Dim seqNo As Nullable(Of Integer)
Dim stepNo As Nullable(Of Integer)
Dim specId As String
JobSpec.DeleteAll(sessionId, woId, operId, seqNo, stepNo, specId)
public static void DeleteAll(
int sessionId,
string woId,
string operId,
Nullable<int> seqNo,
Nullable<int> stepNo,
string specId
)
Parameters
- sessionId
Required. Holds the session ID and thus a user who is making this method call.
- woId
Optional filter parameter. Holds the ID of a work order.
- operId
Optional filter parameter. Holds the ID of an operation.
- seqNo
Optional filter parameter. Holds the operation sequence number of the job.
- stepNo
Optional filter parameter. Holds the number of the step with which a specification is associated.
- specId
Optional filter parameter. Holds the specification ID.