How to encapsulate a section of activities that we dont want to run in parallel?

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.

Any other suggestions are welcomed

Thank you very much

Hi,

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.

Sample20240624-2.zip (2.8 KB)

Or exit parallel then process them in order.

Regards,

1 Like

@Selesta_Juliana

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

Cheers

1 Like

Thank you

I think its going to work just fine

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.