About Decision Tables

Use a decision table to derive a value that has one of a few possible outcomes, where each outcome can be detected by a test condition. A decision table lists two or more rows, each containing test conditions, optional actions, and a result.

The following tabs are available on this form:

At runtime, the system evaluates the rows starting at the topmost row:

  • If any of the conditions in a row evaluate to false, processing continues with the next row. The Actions columns and Return column for that row are ignored.
  • If all the conditions in a row evaluate to true, then the Actions and Return columns of that row are processed. What happens next depends on the Evaluate All Rows check box (on the Results tab).
  • If the Evaluate All Rows check box is not selected, processing ends and the system returns the value in the Return column as the value of the entire rule. If Evaluate All Rows box is selected, processing continues through all remaining rows, performing the Actions and Return calculations for any rows for which the conditions are all true.
  • If for no rows in the table do all conditions evaluate to true, the system returns a default result.

Where referenced

Rules of four other types can reference decision tables:

  • In a flow rule, you can reference a decision table in a decision shape, identified by the Decision shape Decision shape.
  • In an activity, you can evaluate a decision tree using the Property-Map-DecisionTable method.
  • A Declare Expression rule can call a decision table.
  • A collection rule can call a decision table.

Access

Use the Application Explorer to access decision tables that apply to work types in your application. Use the Records Explorer to list all the decision tables available to you.

Development

When creating a rule that is to return only one of a small number of possible values, complete the Results tab before the Table tab.

Delegation

Category

Decision table rules are instances of the Rule-Declare-DecisionTable class. They are part of the Decision category.