Hi Ivyteam, We have a function to delete a list of cases base on dossierId:
After the case is destroyed successfully, the application is crashed because an exception IvyRuntimeException: Task '25' is no longer running. Maybe the task has been reseted or parked meanwhile. ELException: ch.ivyteam.util.IvyRuntimeException: Task '25' is no longer running. Maybe the task has been reseted or parked meanwhile. ContextAwareELException: javax.el.ELException: ch.ivyteam.util.IvyRuntimeException: Task '25' is no longer running. Maybe the task has been reseted or parked meanwhile. Error during rendering of html dialog 'ch.axonivy.desk.individual.customer1.DataGatheringPage' I am using Ivy 7.0.11. How can I overcome this exception? Thanks, Cuong Nguyen asked 10.06.2019 at 03:25 nvcuong01 |
the script just killed the task/case which owns the dialog(script activity) which runs the deletion script. So I'd start to fix this issue by filtering the current case:
answered 11.06.2019 at 05:22 Reguel Werme... ♦♦ |
Once you sign in you will be able to subscribe for any updates here
By RSS:Markdown Basics
Tags:
Asked: 10.06.2019 at 03:25
Seen: 1,763 times
Last updated: 11.06.2019 at 05:22
sounds like your script just killed the task/case which owns the dialog(script activity) which runs the deletion script. So I'd start to fix this issue by filtering the current case.
Thank @Reguel Wermelinger for your response. Could you clarify how to "filtering the current case"?
in plain java:
ICase current = Ivy.wfCase();
therefore...
The issue was solved. Thank @Reguel Wermelinger for your help!