Search the FirstSpirit Knowledge Base
Hello all,
I'm unable to exit the workflow.
Also, I tried with editing the specific workflow and closing all opened workflows, but that didn't help.
Is there any other way to exit the workflow?
Kind Regards,
Dragan Rakita
Hello,
Thanks for the answer but I had no true opened workflows. It was a strange issue.
I used the following script to exit from workflow:
row = context.getSelectedRow();
us = context.getUserService();
task = us.getTask(row.getValue("wf id"));
us.closeTask(task);
Kind regards,
Dragan Rakita
Hi Dragan,
you can go to "Workflows" in the template store. There you have an overview of all active tasks / workflows and can also cancle them.
Greetings
Sandro
Hello,
Thanks for the answer but I had no true opened workflows. It was a strange issue.
I used the following script to exit from workflow:
row = context.getSelectedRow();
us = context.getUserService();
task = us.getTask(row.getValue("wf id"));
us.closeTask(task);
Kind regards,
Dragan Rakita