Editing Route Task Conditions

The Route task is useful in some sitatuions where a basic comparison of a few variables can be specified.

Procedure

  1. Click the cell for each variable and each case.
  2. Specify a comparison operator and a constant value for comparison.
    Basic comparison operators are available in a drop-down list in the condition:
    • = (equal)
    • != (not equal)
    • < (less than)
    • <= (less than or equal)
    • > (greater than)
    • >= (greater than or equal)
    • =true() (only for variables of type boolean)
    • =false() (only for variables of type boolean)
    All conditions for each case must evaluate to true for the condition to be true.
    In the example loan application shown, the operation SimpleLoanPortType/SimpleRequestLoan can be used in two circumstances:
    • For loan amounts that are less than or equal to $50,000.
    • When the applicant has a credit score above 700.

    If neither of these conditions is true, the LoanPortType/RequestLoan operation that requires more information from the applicant must be used.

    Routing with more than one variable