PopupJobSplitDlg Method
- Last UpdatedNov 06, 2025
- 2 minute read
The PopupJobSplit() method opens the Job Split dialog to split the specified quantity of the job into a new job. The dialog allows for the entity on which the new job should be queued to be selected. Also, the quantity of the current job that is to be split off to the new job is specified. The new job is then created and queued to the specified entity with a start quantity equal to the quantity specified. The amount split to the new job is subtracted from the start quantity of the job from which the new job is being split.
public static bool PopupJobSplitDlg(
string title,
string woId,
string operId,
int seqNo,
double reqdQty,
double prodQty,
string processId
)
Parameters
- title
- Required. Holds the title for the Job Split dialog.
- woId
- Required. Holds the work order ID of the job to be split.
- operId
- Required. Holds the operation ID of the job to be split.
- seqNo
- Required. Holds the operation sequence number of the job to be split.
- reqdQty
- Required. Holds the required quantity of the job to be split. Split jobs cannot increase this total.
- prodQty
- Required. Holds the good quantity already produced by the job to be split. This quantity cannot be split.
- processId
- Required. Holds the process ID of the job to be split. This is required to determine possible target entities for the split job.
Return Value
Returns true if the job was split successfully.