GetAll Method (StdOperStepGrp)
- Last UpdatedNov 06, 2025
- 2 minute read
The GetAll() method retrieves one or more standard operation step group records from the Std_Oper_Step_Grp table, as specified by the filter parameters. Passing no filter parameters will retrieve all standard operation step group records from the table.
'Declaration
Public Shared Function GetAll( _
ByVal operId As String, _
ByVal stepGrpId As Nullable(Of Integer), _
ByVal stepGrpDesc As String, _
ByVal stepGrpSeq As Nullable(Of Integer), _
ByVal repeatability As Nullable(Of Integer), _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date) _
) As DataSet
'Usage
Dim operId As String
Dim stepGrpId As Nullable(Of Integer)
Dim stepGrpDesc As String
Dim stepGrpSeq As Nullable(Of Integer)
Dim repeatability As Nullable(Of Integer)
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim value As DataSet
value = StdOperStepGrp.GetAll(operId, stepGrpId, stepGrpDesc, stepGrpSeq, repeatability, lastEditBy, lastEditAt)
public static DataSet GetAll(
string operId,
Nullable<int> stepGrpId,
string stepGrpDesc,
Nullable<int> stepGrpSeq,
Nullable<int> repeatability,
string lastEditBy,
Nullable<DateTime> lastEditAt
)
Parameters
- operId
Optional filter parameter. Holds the ID of the standard operation to which a step group belongs.
- stepGrpId
Optional filter parameter. Holds the ID of a step group.
- stepGrpDesc
- Optional filter parameter. Holds the description of the step group.
- stepGrpSeq
Optional filter parameter. Holds the sequence number of a step group.
- repeatability
Optional filter parameter. Holds an enumeration that indicates the repeatability of steps in a step group:
0 = steps can be performed only once during the execution of the job, as for setup and teardown steps.
1 = steps should be repeated for each lot that is produced (the default).
- lastEditBy
Optional filter parameter. Holds the ID of a user who added or last updated a standard operation step group record.
- lastEditAt
Optional filter parameter. Holds the date and time when an operation step group record was added or last updated.
Return Value
Returns a DataSet that contains all the records in the Std_Oper_Step_Grp table that satisfy the specified filters. If no matching records are found, an empty DataSet is returned.
The columns of the returned DataSet are described below.
|
Column Name |
Description |
|---|---|
|
oper_id |
A string that is the ID of the standard operation, from the Std_Oper_Step_Grp table. |
|
step_grp_id |
An integer that is the step group ID, from the Std_Oper_Step_Grp table. |
|
step_grp_desc |
A string that is the step group description, from the Std_Oper_Step_Grp table. |
|
step_grp_seq |
An integer that is the step group sequence number, from the Std_Oper_Step_Grp table. |
|
repeatability |
An integer that is the enumeration that indicates the repeatability of steps in this group:
|
|
last_edit_comment |
A string that contains comments about why the record was added or updated, from the Std_Oper_Step_Grp table. |
|
last_edit_by |
A string that is the ID of the user who added or last updated this record, from the Std_Oper_Step_Grp table. |
|
last_edit_at |
A date and time that indicates when the record was added or last updated, from the Std_Oper_Step_Grp table. |