lets say i have a set up such as the above.
Would the 2nd IF activity run even if the condition in the first activity was met and went through the Break activity, OR would the Break activity completely end the sequence at that point?
Hi
Usually BREAK activity can be use only in FOR EACH or FOR EACH ROW activity
And make sure that this IF activity is used inside any of the above two mentioned activities
Only then we can
And of course as you said if the first IF condition gets satisfied then it will go to BREAK and then break the whole for each or for each row loop
It won’t go for the next activity to this IF condition
@Palaniyappan explained it very well.
I just want to add that if you really need to “break” inside a if activity, you can use the throw with a new Exception() inside. Put your if inside a try catch, and it will work very well