How can I stop a sequence?

I need to stop or finalize the execution into a sequence using a if condition (business rule). Is it possible? I can’t find a command for it.
I don’t want to use a workflow in this scenario.

Thank you.

you can use throw exception and when the throw activity is execute will stop the sequence and pass to next transaction

1 Like

and if you need to complete the transaction you can use if statement based on the business role that when you need implement remaining activities you should put the remaining activities in the true and if no need it should be the false part it empty

1 Like

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