DeleteAll Method (DataLogGrpOperStepLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more data log group/operation step link records from the Data_Log_Grp_Oper_Step_Link table, as specified by the filter parameters. Passing no filter parameters will remove all data log group/operation step link records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal grpId As Nullable(Of Integer), _
ByVal processId As String, _
ByVal operId As String, _
ByVal stepNo As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim grpId As Nullable(Of Integer)
Dim processId As String
Dim operId As String
Dim stepNo As Nullable(Of Integer)
DataLogGrpOperStepLink.DeleteAll(sessionId, grpId, processId, operId, stepNo)
public static void DeleteAll(
int sessionId,
Nullable<int> grpId,
string processId,
string operId,
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.
- processId
- Optional filter parameter. Holds the process ID of the operation that is being linked.
- operId
- Optional filter parameter. Holds the operation ID of the operation step that is being linked..
- stepNo
- Optional filter parameter. Holds the step number of the operation step that is being linked.