DeleteAll Method (JobStepFile)
- Last UpdatedNov 06, 2025
- 2 minute read
The DeleteAll() method removes one or more job step file records from the Job_Step_File table, as specified by the filter parameters. Passing no filter parameters will remove all job step file 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 assocFile 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 assocFile As String
JobStepFile.DeleteAll(sessionId, woId, operId, seqNo, stepNo, assocFile)
public static void DeleteAll(
int sessionId,
string woId,
string operId,
Nullable<int> seqNo,
Nullable<int> stepNo,
string assocFile
)
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 associated with the job.
- operId
- Optional filter parameter. Holds the ID of the operation associated with the job.
- seqNo
- Optional filter parameter. Holds the operation sequence number to which the jobs step belong.
- stepNo
- Optional filter parameter. Holds the job step number of the job step file record to be deleted.
- assocFile
- Optional filter parameter. Holds the path and file name of the file associated with the job step file.