StartSome Method
- Last UpdatedNov 06, 2025
- 2 minute read
The StartSome() method calls the Middleware to split the specified job into two jobs based on the split quantity and then start the new job created from the split on the specified entity. The new job is given a start quantity of the split quantity specified. This quantity is removed from the start quantity of the specified job.
public static void StartSome(
int entID,
string woID,
string operID,
int origSeqNo,
double qtyReqd,
double startQty,
object newSeqNo,
string statusNotes
)
Parameters
- entID
- Required. Holds the ID of the entity on which the new job created from the split is to be started.
- woID
- Required. Holds the work order ID of the job to split.
- operID
- Required. Holds the operation ID of the job to split.
- origSeqNo
- Required. Holds the operation sequence number of the job to split.
- qtyReqd
- Required. Holds the quantity to split off from the original job for the new job.
- startQty
- Required. Holds the start quantity for the new job. It cannot be greater then the start quantity of the original job.
- newSeqNo
- Optional. Holds the operation sequence number for the new job. If a null is passed, the next available sequence number is used for the new job.
- statusNotes
- Optional. Holds status notes for the new job. If a null is passed, no status notes are assigned to the new job.