Hi,
In the flow service, I got a variable exceptionString.
Say, for example, this variable, during runtime, assumes any one of the following
values.
- “Flow exception in processing service”
- “Null pointer exception”
- “Exception in compareFlow service”
- “Guaranteed delivery exeception”
When exceptionString has “Flow” within its content, the flow will perform some steps and if not, it will perform someother steps.
Something like the below, I want to achieve using flow service.
If exceptionStr LIKE ‘%Flow%’ then
execute step 1
execute step 2
Else
execute step 3
execute step 4
End If
How can I achieve this using wM flow service?
Your suggestions please.
Regards