Adding an "OR" condition in a business rules

Good afternoon,

Do you guys know if the conditions in the business rules can contain "OR" ?

I can add multiple in a row, but only the first one is taken into account.

Thanks!

Parents
  • Hi  ,

    I don't believe it is possible to insert boolean logic within the business rule parameters. Business rules are a 'first hit' method meaning the first row that successfully validates is what processes in a given instance. I mention this because if you want to take a certain action when subject starts with 'Demande de pseudonyme' or 'Demande de nom de groupe' then you can achieve this by having a row for each potential condition within the business rule. For example, your business rule could have the following specifications:

    Row 1: subject starts with "Demande de pseudonyme" = return 'TRUE' value
    Row 2: subject starts with "Demande de nom de groupe" = return 'TRUE' value
    Row 3: subject is not "" = return "FALSE" value

    Chris

  • Damn, that is what i was affraid of.

    Thanks for the answer

Reply Children
No Data