hello guys,
In my web app if my element exist “geterror” is true then terminate or close my work flow the else part is working correctly…
red circle highlighted where i want terminate my workflow…
if you are using re-framework then redirect the process state to end process state by throwing an exception called business exception
Though this is not an optimal usage of terminate workflow activity as this does an abrupt ending of the process:-
you can also use terminate workflow and give the exception as New exception (“exception message write here”) in the properties of the terminate workflow activity
also give the reason for terminating
You could try and use a Flow Chat and a Decision Flow. If everything is ok (true), go to the next flow. Otherwise (false) just show a message and nothing else will happen, teminating the workflow
Yes, I am also looking for the same solution, I want to have silent stop the work flow, not any dialog pop up and click ok button. Any one will shred the light?