'=== Script Name: StartBatch '=== Execution Type: Execute '=== Expression: Me.JobExec.JobPos0.CurWoId '=== Trigger Type: DataChange '=== Body: ' ***** StartBatch Script ***** ' ' This script monitors whether a job has been started in this entity ' and then downloads the batch target and starts a new batch in the Boxer ' Verify that there is a job currently running in the Boxer IF(NOT System.String.IsNullOrEmpty(Me.JobExec.JobPos0.CurWoId)) THEN ' Download batch target to the Boxer MyContainer.BatchTarget = Me.JobExec.JobPos0.QtyReqd; ' Start the Boxer MyContainer.RunCmd = true; ' After start, the Boxer will start producing based on the target ENDIF;