Custom conditions

Specifies how to combine the conditions when you choose Custom. You can use AND, OR, and parentheses to specify different combinations of conditions. Use the numbers to the left of each condition to represent the condition.

For example, in the Jobs table you define three conditions:

  1. Workflow = AFP
  2. Workflow = PDF
  3. Current job state = Error

You can create combinations such as these:

( 1 OR 2 ) AND 3
This statement returns jobs that are in either the AFP or PDF workflow and are in the Error state.
1 OR ( 2 AND 3 )
This statement returns all jobs that are in the AFP workflow and all jobs that are in the PDF workflow that are in the Error state.