DeleteAll Method (Job)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more job records from the Job table. Passing no filter parameters will remove all job 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) _
)
'Usage
Dim sessionId As Integer
Dim woId As String
Dim operId As String
Dim seqNo As Nullable(Of Integer)
Job.DeleteAll(sessionId, woId, operId, seqNo)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- woId
- Optional filter parameter. Holds the ID of the work order for a job.
- operId
- Optional filter parameter. Holds the ID of the operation for a job
- seqNo
- Optional filter parameter. Holds the operation sequence number for a job.