We could only have one condition and one action in business rule. So it is like a single if statement:
If [this condition]
Then do [this action]
Meanwhile, if-else or switch-case scenario is not available
If [condition is A]
Do [action A]
Else if [condition is B]
Do [action B]
Else if [condition C]
Do [action C]
Else
Do [default action]
To achieve this, we need separate business rules and might want to check whether one rule is unique to the other rules, which is quite messy for a solution.
If [condition is A] and [not condition B] and [not condition C]
Do [action A]
And so on…
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.