Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.
How to implement A=10 || A=10 && B=true by using branch flow step?
Can anyone suggest please
Why don’t you just use FlowService conditional controls like: IF, If Else, Else If, and/or Nest Conditions. For wM.io Integration FlowServices, you can find info in here: FlowServices - webMethods.io Integration
There is a short demo on this in YouTube: FlowService Basic Utility | webMethods.io Integration Tutorials - YouTube (check the documentation for the latest capabilities of FlowServices).
Wayne
By the way, is that just a sample expression you came up with or do you actually need to implement that expression? I ask because:
A==10 || A==10 && B==true
Is logically equivalent to simply:
A==10
Percio