DeleteAll Method (DataLogGrpJobStepLink)
- Last UpdatedNov 06, 2025
- 2 minute read
The Delete All() method deletes multiple records from the Data_Log_Grp_Job_Step_Link table. Note: This is considered to be an advanced method and must be used with care. Calling this methods with all parameters set to null will cause all the data in the table to be deleted. Whenever possible, use the Delete methods rather than the DeleteAll method
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal grpId As Nullable(Of Integer), _
ByVal woId As String, _
ByVal operId As String, _
ByVal seqNo As Nullable(Of Integer), _
ByVal stepNo As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim grpId As Nullable(Of Integer)
Dim woId As String
Dim operId As String
Dim seqNo As Nullable(Of Integer)
Dim stepNo As Nullable(Of Integer)
DataLogGrpJobStepLink.DeleteAll(sessionId, grpId, woId, operId, seqNo, stepNo)
public static void DeleteAll(
int sessionId,
Nullable<int> grpId,
string woId,
string operId,
Nullable<int> seqNo,
Nullable<int> stepNo
)
Parameters
- sessionId
- Required. An integer which identifies the session (and thus the user) making the call.
- grpId
- Optional filter parameter. Holds the ID of the data log group that is being linked.
- woId
- Optional filter parameter. Holds the work order ID of the job step that is being linked.
- operId
- Optional filter parameter. Holds the operation ID of the job step that is being linked.
- seqNo
- Optional filter parameter. Holds the operation sequence number of the job step that is being linked.
- stepNo
- Optional filter parameter. Holds the step number of the job step that is being linked.