-2

I am new to IBM BPM and wanted to know how I could implement an exclusive gateway that ignores case sensitivity when creating the decision, attached is what I have at the moment.

No Consent: tw.local.aimCapaignResute.customerConsent == "No"
Default Flow: Consent Granted

Exclusive Gateway

Jason Aller
  • 3,541
  • 28
  • 38
  • 38
Divashen24
  • 35
  • 1
  • 7

1 Answers1

0

You can just write

tw.local.aimCampaignRequest.customerConsent == 'No' || tw.local.aimCampaignRequest.customerConsent == 'no' 

into the left side. But I would suggest that you give the enduser a radiogroup with only the options No or Yes (where you can control the output).

Nils
  • 879
  • 1
  • 9
  • 19
  • Thank you. The data comes in from an external source hence that value is already determined when it comes into the BPM system. Thank you very much this helps alot. – Divashen24 Mar 05 '19 at 08:54
  • If the answer helped you, you can accept it as valid. That helps others with the same question later. :) you are welcome – Nils Mar 06 '19 at 09:06
  • You could also user toUpperCase() function... this way you don't need to user OR on your statement, like: tw.local.aimCampaignRequest.customerConsent.toUpperCase() == 'NO' – Ranieri Mazili Apr 09 '19 at 12:22