Parallel worflow is nice but sometimes there are a few activities within our workflow that we dont want to be executed in parallel but in series, without interleaving with other branches, in one block.
Please don’t suggest the invoke workflow file, i tested it does not work, the invoke workflow file doesn’t protect the acitivities inside from parallel execution.
As far as I know, there is no feature to achieve it.
I think it may be able to do it to use lock logic in a simple case, as the following, for example.
I believe you need to break the paralle activity where you need the sequence to be executed and then starta nother parallel activity again for the remaining activities if needed