Hey,
I try to jump to the "Cleanup" group of the calling sequence if a simple boolean value is "false", but I can't find the right solution.
In my case, I have a master sequence (test_caller.seq) wich calls another sequence (test_caller_sub.seq). Now, if the boolean value (Locals.gotoNextStep) is false - this will be checked in the Statement-Step of test_caller_sub, the next step must be the Cleanup-Group of the master sequence (test_caller.seq). The qppended code is just a simple example and not the real structure, it just focus my problem.
2 solutions will be possible for my problem:
- jump from "Statement" (test_caller_sub) to Cleanup-Group (test_caller_sub) to Cleanup-Group (test_caller) OR
- jump from "Statement" (test_caller_sub) directly to Cleanup-Group (test_caller)
Is there a simple expression to do this?