GetJobEvents Method (Jobs)
- Last UpdatedNov 06, 2025
- 1 minute read
The GetJobEvents() method retrieves a DataSet containing all job event data for the specified job. Job events include a certification sign-off, adding production, adding consumption, reclassifying production, reclassifying consumption, completing a step, changing job specifications, and changing a job state. The data can be optionally filtered by step number and/or lot number.
public static DataSet GetJobEvents(
string woID,
string operID,
int seqNo,
object stepNo,
string lotNo
)
Parameters
- woID
- Required. Holds the work order ID of the job for which event data is being retrieved.
- operID
- Required. Holds the operation ID of the job for which event data is being retrieved.
- seqNo
- Required. Holds the operation sequence number of the job for which event data is being retrieved.
- stepNo
- Optional. Holds the step number by which to filter the job event data. Set to null to ignore.
- lotNo
- Optional. Holds the lot number by which to filter the job event data. Set to an empty string to ignore.
Return Value
Returns a DataSet containing a row for each job event that matches the filter.