Cancel all failed process instances of a definition

Hi all,

I have implemented a process that for every 15 minute tries to ping several URLs by calling GETs. Some of the addressed URLs were not reachable for a couple of days, and unfortunately I was not informed. I have fixed the reason for these failures, but my cockpit now shows more than 600 failed process instances. Is there a way to cancel them all from the cockpit? To make it clear: I do not want to retry them, I want to cancel them, they are not needed any more.

Many thanks in advance,
Christian

Hi,

Workflow fails with two ways one with Runtime exception and another is with check exception.
In case of runtime exception workflow rollback transaction till last wait state so usually while designing only one should provide path to logical end by passing or setting variable value which one can set from task list in case of run time error.
But if such design is missing then you can delete the references of execution/task ids of that failed process instance from back end.

hope this help

Thanks…