GetAll Method (DataLogGrpStdOperStepLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The GetAll() method retrieves one or more data log group/standard operation step link records in the Data_Log_Grp_Std_Oper_Step_Link table, as specified by the filter parameters. Passing no filter parameters will retrieve all data log group/standard operation step link records in the table.
'Declaration
Public Shared Function GetAll( _
ByVal grpId As Nullable(Of Integer), _
ByVal operId As String, _
ByVal stepNo As Nullable(Of Integer), _
ByVal certName As String, _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date) _
) As DataSet
'Usage
Dim grpId As Nullable(Of Integer)
Dim operId As String
Dim stepNo As Nullable(Of Integer)
Dim certName As String
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim value As DataSet
value = DataLogGrpStdOperStepLink.GetAll(grpId, operId, stepNo, certName, lastEditBy, lastEditAt)
public static DataSet GetAll(
Nullable<int> grpId,
string operId,
Nullable<int> stepNo,
string certName,
string lastEditBy,
Nullable<DateTime> lastEditAt
)
Parameters
- grpId
- Optional filter parameter. Holds the ID of the data log group that is being linked.
- operId
- Optional filter parameter. Holds the standard operation that is being linked.
- stepNo
- Optional filter parameter. Holds the step number of the standard operation step that is being linked.
- certName
- Optional filter parameter. Holds the certification necessary to confirm data.
- lastEditBy
- Optional filter parameter. Holds the ID of the user who added or last updated this record.
- lastEditAt
- Optional filter parameter. Holds the date/time when this record was added or last updated.