If Then Else Action Advanced Customizations

Dynamic Redirection:

Redirection can be made based on the user's profile or transaction history.

Condition Creation Sources:

  • Action Result (result of the previous action)
  • Form Component, Screen Input, Fixed values
  • Symbol Picker (data binding tool) can be used to determine this.

Action Entry Configuration:

  • If Actions: Required. Actions to be performed when the condition is met.
  • Else Actions: Optional. Actions to be performed when the condition is not met.

Post-Action Usage

  • The condition is evaluated.
  • If true, the If block is executed; if false, the Else block is executed.
  • A user-specific process flow is created.

Technical Risks and Recommendations

  • Condition Errors: Ensure that condition statements are written correctly.
  • Missing Alternative Flow: If the Else block is not defined, no action is taken when the condition is not met.
  • Performance: Multi-layered conditions can cause slowdowns; keep them simple.

The If Then Else action enables you to make conditional decisions in your application. It enhances the user experience by creating flexible process flows based on user interactions and application data. It is an effective tool for redirection, form validation, and approval processes.