Splitting example #1

Split documents on the page that contains a barcode with a defined RRT.

  1. Create a workflow with the AutoCapture and Barcode components that allows users to enter the city name in the 'City' field of the form.
  2. On the General tab of the Barcode configuration dialog box, select the Split on barcode check box, and select External Script in the Using box.
  3. Click the Scripts button, click Add, and enter a file name with the .vbs extension.
  4. Click the Edit button, and in the Script Editor window create the following script:
    Example
    
    If sBarcode = sSplitValue Then
      RRV ="Split=BEFORE"
    End If 
    
  5. Click Compile, save the script, and close the Script Editor.
  6. In the Script Properties dialog box for Run condition, select Each barcode.
  7. In Script Variables, click the Add button to configure the script variables:
    VariableDescription
    sBarcode Local variable initialized by the ~LTB::Barcode~ RRT.
    sSplitValue Local variable initialized by ~ACC::%City%~ RRT.
  8. Save the configuration and run the process.
When sending files, the user specifies a city in the AutoCapture form. The script is executed for each barcode on the page after the page is processed. If the value of some barcode on the page is equal to the city name entered by the user, the script will return the value RRV = "Split=BEFORE" and the component will split the document on the current page and this page will be the first page of the next document.