Stop Execution when condition doesn't met

Hi @Debasis_Nayak,

You can:

  • use Throw activity (covered here) to raise an exception (BusinessRuleException) which would (unless the exception is muted along the way) bubble up all the way up to the outer layer of your workflow
  • use Terminate activity which has a similar effect but is a bit more harsh

image

the above are options to sort of force your workflow to finish. You can also structure your conditions to navigate towards the end of the workflow.

image

BR,
Filip

1 Like