How to stop process at particular step

Hi,

I have created one workflow and whole workflow in one for each loop.
In that loop there are 2 sequences. In first sequence there is one if condition and that if condition is satisfies then no need to go to next sequence else i have to go to next sequence .How can in achieve that? what should i do in then condition so it will stop and not enter to another sequence and will go to next iteration?
here are the pics
This are the two sequences inside for each row
first sequence inside try catch block , second not in try catch.
1

this is the if condition in first sequence and i want to not enter in second sequence if this condition satisfies .
2

please help me with the same.

@Mathkar_kunal
You can use boolean Variable inside the first sequence and assign True at the end of the flow and assign False to the exception scenario.
So after the Try Catch block/First sequence you can use the boolean variable in IF condition and execute second flow if condition is true.

hope this helps :slight_smile:

2 Likes

Thanks,Worked.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.