DeleteAll Method (DataLogGrpJobLink)
- Last UpdatedNov 06, 2025
- 2 minute read
The DeleteAll() method removes one or more data log group/job link records from the Data_Log_Grp_Job_Link table, as specified by the filter parameters. Passing no filter parameters will remove all data log group/job link records from the table.
'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) _
)
'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)
DataLogGrpJobLink.DeleteAll(sessionId, grpId, woId, operId, seqNo)
public static void DeleteAll(
int sessionId,
Nullable<int> grpId,
string woId,
string operId,
Nullable<int> seqNo
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- grpId
- Optional filter parameter. Holds the ID of a data log group.
- woId
- Optional filter parameter. Holds the ID of a job's work order.
- operId
- Optional filter parameter. Holds the ID of a job's operation.
- seqNo
- Optional filter parameter. Holds the operation sequence number of a job.
Data log groups are specified by the data log group ID.
Jobs are specified by the work order ID, operation ID, and operation sequence number.
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.