GetJobStepData Method (JobSteps)
- Last UpdatedNov 06, 2025
- 1 minute read
The GetJobStepData() method gets the job step data for a job. A job is specified by a work order, an operation ID, and an operation sequence number. The data can be further filtered by providing a step number and a lot number.
public static DataSet GetJobStepData(
string woID,
string operID,
int seqNo,
int stepNo,
string lotNo
)
Parameters
- woID
- Required. Holds the ID of the job's work order.
- operID
- Required. Holds the ID of the job's operation.
- seqNo
- Required. Holds the number of the job's operation sequence.
- stepNo
- Required. Holds the number of the step whose data is being retrieved.
- lotNo
- Required. Holds the lot number on which the step is being performed.
Return Value
Returns a DataSet that contains the rows in the Job_Step_Data table that match
the filter parameters.