PopupStartSomeDlg(String,String,String,Int32,Double,Double,Double,Double) Method
- Last UpdatedNov 06, 2025
- 2 minute read
This overload of the PopupStartSomeDlg() method opens the Start Some dialog to split the specified job and start the new job on the current entity. The Start Some dialog allows the user to specify the start quantity of the new job created by the split and the required quantity. The start quantity cannot exceed the quantity available to split from the specified job. A new job is created with the quantity that is split from the specified job, and the new job is started on the current entity on which the user is working. The start quantity split to the new job is subtracted from the quantity left to produce of the specified job.
public static bool PopupStartSomeDlg(
string title,
string woId,
string operId,
int seqNo,
double batchSize,
double startQty,
double reqdQty,
double prodQty
)
Parameters
- title
- Required. Holds the title of the Start Some dialog.
- woId
- Required. Holds the work order ID of the job to split.
- operId
- Required. Holds the operation ID of the job to split.
- seqNo
- Required. Holds the operation sequence number of the job to split.
- batchSize
- Required. Holds the batch size of the job to split.
- startQty
- Required. Holds the start quantity of the job to split. The new job cannot have a start quantity larger than this.
- reqdQty
- Required. Holds the required quantity of the job to split. Split jobs cannot increase this total.
- prodQty
- Required. Holds the good quantity already produced by the job to split. This quantity cannot be split.
Return Value
Returns true if some of the job was started successfully.