DeleteAll Method (JobBomStep)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more job BOM step records from the Job_Bom_Step table, as specified by the filter parameters. Passing no filter parameters will remove all job BOM step 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 bomPos As Nullable(Of Integer), _
ByVal stepNo As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim woId As String
Dim operId As String
Dim seqNo As Nullable(Of Integer)
Dim bomPos As Nullable(Of Integer)
Dim stepNo As Nullable(Of Integer)
JobBomStep.DeleteAll(sessionId, woId, operId, seqNo, bomPos, stepNo)
public static void DeleteAll(
int sessionId,
string woId,
string operId,
Nullable<int> seqNo,
Nullable<int> bomPos,
Nullable<int> stepNo
)
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 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.
- bomPos
Optional filter parameter. Holds the BOM position for a job.
- stepNo
Optional filter parameter. Holds the step number for a job.