Business Rules

Business Rules are logical expressions, based on Boolean values, which are applied to the connections between workflow activities where the process flow may branch off in different directions due to varying conditions. When you assign a Business Rule to a connection between activities, you define the criteria that dictate whether the process can follow that particular path or not.

To add business rules to workflows

  1. Right-click anywhere on the white space of the workflow open in the Workflow Designer and select Workflow Business Rules from the context menu.

     

  2. Enter a name for the Business Rule in the Workflow Business Rules window that opens and click the Add button.

     

  3. Double-click the new rule to create an event handler for it.

     

  4. In the C# Editor that opens, you can add a code snippet for a Business Rule. Here’s an example of a simple Business Rule:

    bool canProceed = false; // Add your custom logic here to determine if the process can proceed if (/* some_condition_here */) { canProceed = true; } else { canProceed = false; } return canProceed;


Apply the rule to activity lines 

  1. Right-click one of the lines proceeding from an activity where more than one outcome is possible and choose Select Line Rule from the context menu.

     

  2. In the Select Rule window that appears, choose the desired rule from the Rule drop-down list. If you want the process to flow through the line when a "false" condition is met, select the "If Rule Not True" option. If you want the process to flow through the line when a "true" condition is met, leave the "If Rule Not True" option unselected.

     

  3. Click OK to close the Select Rule window.

  4. Repeat the process for the second line originating from the same activity. This time, set the "If Rule Not True" option to the opposite of what was set for the first line. If you selected the "If Rule Not True" option for the first line, leave it unselected for the second line and vice versa. This ensures that the workflow proceeds through one line when the condition is "true" and through the other line when the condition is "false."

  5. The lines change color after the Business Rules are applied.



Key

Orange lines indicate that the attached business rule evaluates to false.

Blue lines indicate that the attached business rule evaluates to true.

Black lines indicate that there is no business rule applied.