End the execution of a project when a condition fails

I need to end the execution of a project when a condition fails. Also the message box activity should also execute if the condition is true or false. How to perform this one?

Any one please help me…

1 Like

did you try using break activity??

1 Like

Use Throw Activity if the condition fails.

1 Like

Hi
use IF condition and set a condition you want to validate whether to continue or end the process execution
if true it goes to THEN part where we can use MESSAGE BOX activity and pass the input string that will get displayed when the condition satisfies
–next to this to end the execution of the project use TERMINATE WORKFLOW activity
this will stop the job execution

Cheers @rifnanahas

1 Like