GetAll Method (JobStepChoice)
- Last UpdatedNov 06, 2025
- 2 minute read
'Declaration
Public Shared Function GetAll( _
ByVal woId As String, _
ByVal operId As String, _
ByVal seqNo As Nullable(Of Integer), _
ByVal stepNo As Nullable(Of Integer), _
ByVal choiceNo As Nullable(Of Integer), _
ByVal choiceLabel As String, _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date), _
ByVal rowId As Nullable(Of Integer) _
) As DataSet
'Usage
Dim woId As String
Dim operId As String
Dim seqNo As Nullable(Of Integer)
Dim stepNo As Nullable(Of Integer)
Dim choiceNo As Nullable(Of Integer)
Dim choiceLabel As String
Dim lastEditBy As String
Dim lastEditAt As Nullable(Of Date)
Dim rowId As Nullable(Of Integer)
Dim value As DataSet
value = JobStepChoice.GetAll(woId, operId, seqNo, stepNo, choiceNo, choiceLabel, lastEditBy, lastEditAt, rowId)
public static DataSet GetAll(
string woId,
string operId,
Nullable<int> seqNo,
Nullable<int> stepNo,
Nullable<int> choiceNo,
string choiceLabel,
string lastEditBy,
Nullable<DateTime> lastEditAt,
Nullable<int> rowId
)
Parameters
- woId
- Optional filter parameter. Holds the ID of the work order associated with the job.
- operId
- Optional filter parameter. Holds the ID of the operation associated with the job.
- seqNo
- Optional filter parameter. Holds the operation sequence number to which the job steps belong.
- stepNo
- Optional filter parameter. Holds a job step number.
- choiceNo
- Optional filter parameter. Holds a choice number.
- choiceLabel
- Optional filter parameter. Holds a choice label, which indicates the step choice type.
- lastEditBy
- Optional filter parameter. Holds the ID of a user who added or last updated a job step choice record.
- lastEditAt
- Optional filter parameter. Holds the date/time when a job step choice record was added or last updated.
- rowId
- Optional filter parameter. Holds the row ID of a job step choice record.
Return Value
Returns a DataSet that contains all the records in the Job_Step_Choice 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 |
|---|---|
|
wo_id |
A string that is the ID of the work order. |
|
oper_id |
A string that is the ID of the operation. |
|
seq_no |
An integer that is the sequence number. |
|
step_no |
An integer that is the step number. |
|
choice_no |
An integer that is the choice number |
|
choice_label |
A string that is the choice label type. |
|
last_edit_comment |
A string that contains comments about why the record was added or updated. |
|
last_edit_by |
A string that is the ID of the user who added or last updated this record. |
|
last_edit_at |
A datetime that indicates when the record was added or last updated. |
|
row_id |
An integer that is the row ID. |