Terminate Workflow- No popup Required

Hi @Teenu,

You can use throw exception instead of terminate workflow.

Put the whole process into the Try catch activity. Where you want terminate the workflow, you can throw the new exception like ‘BusinessRuleException’ and catch it in the catch block by ‘exception.BusinessRuleException’. Put some log for your reference in the catch block.

So you can skip the whole workflow like Terminate Workflow

Thanks,
Michael Udhaya

2 Likes