Configuring batch inclusion conditions
To configure batch inclusion conditions:
- Click Delivery Channels/Batch Mode/Inclusion Condition to open the Inclusion Condition field.
- Enter an inclusion condition. You can use any output
variable to determine if a document is included in the stream
Note that you can right-click on the box for a list of output variables supplied by the system. Click on the line required and the correct variable syntax will be entered for you.
When entering your own inclusion conditions the following syntax rules must be applied:
Simple expression: | ${X} <> 10 |
Complex expression: | ${X} 10 and ${X}
< 20 |
Grouping: | ${X} 10 and not
(${X} = 20 or ${X} = 30) |
Note that in the above examples, X is the output variable. | |
Supported relational operators: | <, >, <=, >=, =,
<> |
Supported logical operators: | and, or, not |
String literals: | enclose in quotes |
Numeric values: | should NOT be enclosed in quotes |
Date values: | use YYYY-MM-DD format and enclose in quotes |
Time values: | use HH:MM:SS format and
enclose in quotes, for example:${Time} =
"13:59:00" |
Note that in
the above examples quotes are used to avoid conflict with the
operators (and, or, not,
etc.) and dates with numbers. Quotes can be double or
single. |