GetJobBOMStepQuantities Method
- Last UpdatedNov 06, 2025
- 2 minute read
Parameters
- woId
- Required. Holds the work order ID of the job.
- operId
- Required. Holds the operation ID of the job.
- seqNo
- Required. Holds the sequence number of the job.
- stepNo
- Required. Holds the job step number.
Return Value
Returns a DataSet that contains records for the job step quantities. If there are no job step quantities, an empty DataSet is returned.
The columns of the returned DataSet are described below.
|
Column Name |
Description |
|---|---|
|
bom_pos |
An integer that is BOM position, from the job_bom.bom_pos column. |
|
item_id |
An string value that is the item ID, from the Item.item_id column. The display of the item field is derived from a system attribute (att_id=210).
|
|
quantity |
A double floating point value that is the nominal quantity of the item required per unit of parent item, from the job_bom.qty_per_parent_item column. |
|
qty_at_step |
A double floating point value that is the nominal quantity of the item per unit of immediate parent item for this step, from the job_bom_step.qty_per_parent_item column. |
|
remaining |
A double floating point value that is the remaining quantity of the item. |
|
changed |
An integer that is the job position, from the Job_bom.job-pos column |
|
num_decimals |
An integer that is number of decimal places for a quantity, from the Item.num_decimals column. |
|
mod_id |
The current modification ID of the record in the table. This ID is binary number that increments each time the record’s table row is modified. Optionally used for optimistic concurrency control when performing updates or deletes. |