PopupStartSomeDlg(String,Int32,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 specified 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 specified entity. The start quantity split to the new job is subtracted from the quantity left to produce of the specified job.
'Declaration
Public Overloads Shared Function PopupStartSomeDlg( _
ByVal title As String, _
ByVal entId As Integer, _
ByVal woId As String, _
ByVal operId As String, _
ByVal seqNo As Integer, _
ByVal batchSize As Double, _
ByVal startQty As Double, _
ByVal reqdQty As Double, _
ByVal prodQty As Double _
) As Boolean
public static bool PopupStartSomeDlg(
string title,
int entId,
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.
- entId
- Required. Holds the ID of the entity on which the split job is to be started.
- woId
- Required. Holds the work order ID of the 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.