DeleteAll Method (BomItemOperStepLink)
- Last UpdatedNov 06, 2025
- 2 minute read
The DeleteAll() method deletes one or more BOM item/operation step link records from the Bom_Item_Oper_Step_Link table, as specified by the filter parameters. Passing no filter parameters will delete all BOM item/operation step link records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal parentItemId As String, _
ByVal verId As String, _
ByVal bomPos As Nullable(Of Integer), _
ByVal processId As String, _
ByVal operId As String, _
ByVal stepNo As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim parentItemId As String
Dim verId As String
Dim bomPos As Nullable(Of Integer)
Dim processId As String
Dim operId As String
Dim stepNo As Nullable(Of Integer)
BomItemOperStepLink.DeleteAll(sessionId, parentItemId, verId, bomPos, processId, operId, stepNo)
public static void DeleteAll(
int sessionId,
string parentItemId,
string verId,
Nullable<int> bomPos,
string processId,
string operId,
Nullable<int> stepNo
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- parentItemId
Optional filter parameter. Holds the ID of a parent item.
- verId
Optional filter parameter. Holds the ID of a BOM version.
- bomPos
- Optional filter parameter. Holds a BOM position.
- processId
- Optional filter parameter. Holds the ID of a process to which an operation belongs.
- operId
- Optional filter parameter. Holds the ID of an operation.
- stepNo
Optional filter parameter. Holds the number of an operation step.
For input parameters that are not to be included as a filter, pass a null.
CAUTION: Use extreme care when calling the DeleteAll() method, as mistakes in the input parameters can result in the unintentional deletion of many or all records from the table.
For input parameters that are not to be included as a filter, pass a null.