Operation | Info |
---|
| Checks if the workflow variable is equal to the specified value. Simple Rules example configuration as shown:
The following workflow design is used:
Based on the workflow above, if the workflow variable "country" value is "USA", based on conditions configured in the decision plugin, it will direct to Activity 1. For any other value, it will follow the Else Then condition and route to the "otherwise" transition to Activity 2. |
Info |
---|
| Checks if the workflow variable is greater than the specified value. Simple Rules example configuration as shown:
The following workflow design is used:
Based on the workflow above, if the workflow variable "price" value is greater than "2", based on conditions configured in the decision plugin, it will direct to Activity 1. For any other value, it will follow the Else Then condition and route to the "otherwise" transition to Activity 2. |
Info |
---|
title | Greater Than Or Equal To |
---|
| Checks if the workflow variable is greater than OR equal to the specified value. Simple Rules example configuration as shown:
The following workflow design is used:
Based on the workflow above, if the workflow variable "price" value is greater than OR equal to "2", based on conditions configured in the decision plugin, it will direct to Activity 1. For any other value, it will follow the Else Then condition and route to the "otherwise" transition to Activity 2. |
Info |
---|
| Checks if the workflow variable is less than the specified value. Simple Rules example configuration as shown:
The following workflow design is used:
Based on the workflow above, if the workflow variable "price" value is less than "2", based on conditions configured in the decision plugin, it will direct to Activity 1. For any other value, it will follow the Else Then condition and route to the "otherwise" transition to Activity 2. |
Info |
---|
title | Less Than Or Equal To |
---|
| Checks if the workflow variable is less than OR equal to the specified value. Simple Rules example configuration as shown:
The following workflow design is used: Based on the workflow above, if the workflow variable "price" value is less than OR equal to "2", based on conditions configured in the decision plugin, it will direct to Activity 1. For any other value, it will follow the Else Then condition and route to the "otherwise" transition to Activity 2. |
Info |
---|
| Checks if the workflow variable matches with value "1" or "true" Simple Rules example configuration as shown:
The following workflow design is used:
Based on the workflow above, if the workflow variable "isUrgent" value is true, based on conditions configured in the decision plugin, it will direct to Activity 1. For any other value, it will follow the Else Then condition and route to the "otherwise" transition to Activity 2. |
Info |
---|
| Checks if the workflow variable matches with value "0" or "false" Simple Rules example configuration as shown:
The following workflow design is used:
Based on the workflow above, if the workflow variable "isUrgent" value is false, based on conditions configured in the decision plugin, it will direct to Activity 1. For any other value, it will follow the Else Then condition and route to the "otherwise" transition to Activity 2. |
Info |
---|
| Checks if the value of a field contains a specified substring in a value. Simple Rules example configuration as shown:
The following workflow design is used:
Based on the workflow above, if the workflow variable "country" value contains the substring "US" (e.g., "USA", "USSR"), based on conditions configured in the decision plugin, it will direct to Activity 1. For any other value, it will follow the Else Then condition and route to the "otherwise" transition to Activity 2. |
Info |
---|
| Checks if the country field matches any one of the values in a specified list of values. Simple Rules example configuration as shown:
The following workflow design is used:
Warning |
---|
| A ";" must be added in between items of specified value for it to work. (Item1;Item2;Item3) |
Based on the workflow above, if the workflow variable "country" value matches any one of the values in the specified list ("USA", "Canada", or "Mexico"), based on conditions configured in the decision plugin, it will direct to Activity 1. For any other value, it will follow the Else Then condition and route to the "otherwise" transition to Activity 2. |
Info |
---|
| Evaluates whether the value of a field matches a regular expressions (regex) specific pattern. Simple Rules example configuration as shown:
The following workflow design is used:
Based on the workflow above, if the workflow variable "email" matches the pattern of a valid .com email address ("^[\\w.%+-]+@[\\w.-]+\\.com$", e.g. abc@def.com), based on conditions configured in the decision plugin, it will direct to Activity 1. For any other value, it will follow the Else Then condition and route to the "otherwise" transition to Activity 2. |
|