07-02-2025 03:33 AM
Hello,
I work with TS 2024. I make several subsequences, An example of flowchart
MainSequence:
Call subSeqA
Call subSeqB
SubSeqA:
Call SubSeqAB
Call SubSeqAC
Call SubSeqAD
Call SubSeqAY
Call SubSesAZ
I am in a subsequence AB, in certain condition ( breakdown or issue), I would like to go back in subsequence A, do the subseq AY and AZ and continue to the subSeqB.
I cannot do this this with a simple GoTo (in the same subseq).
Could you help me pls?
Solved! Go to Solution.
07-02-2025 03:51 AM
When in SubSeqAB perform a GotoCleanup, which will bring you back to SubSeqA.
If you signal the occurence of that condition in a parameter of SubSeqAB, you can evaluate the return and skip AC and AD (e.g. with a precondition)
In the end, someone has to understand what you are doing (yourself in 2 years or so...) so don't get it too complicated!
07-02-2025 04:26 AM
@Oli_Wachno wrote:
When in SubSeqAB perform a GotoCleanup, which will bring you back to SubSeqA.
If you signal the occurence of that condition in a parameter of SubSeqAB, you can evaluate the return and skip AC and AD (e.g. with a precondition)In the end, someone has to understand what you are doing (yourself in 2 years or so...) so don't get it too complicated!
Same recommendation, do a GotoCleanup in SubSeqA which will automatically take you to MainSequence after cleanup section completes.