I have created workflow where there are three try blocks and multiple conditions in each block .In first try block sequence there is one condition where , if that condition satisfies then i dont want to go further for next 2 and 3 blocks.for that i have created variable and gave value as false for that particular condition and while starting of 2 and 3 block i have started as if variale = true.
By doing this workflow is not going to 2 nd block but it is going to 3 rd block thats why i am confuse after giving condition also it is going to 3 rd.
So, how can i stop this workflow in in 1 st block?
variable is global variable and those all block in one for each loop.
My variable(continuer) is generic and contains boolean value.
there is one if in first block which i have put in default where if condition satisfies then i have put continuer variable true else i have put false.
what should i write in case 1 ?