I created a queue item. Then I started a process that reads the transaction item, which changes the status of the queue item from “new” to “in progress”.
Now my process crashed and the queue item remains in status “in progress”. What I want to do is manually reset the queue item in the orchestrator to be able to restart the process. Or if that is not possible to delete the queue item.
Yet, in the orchestrator when selecting the transaction item, I can’t interact with it. All options are “grey”. Only the transaction details can be selected.
I understand that in your case, you would want to get the items back in queue and not delete them. I am planning to write a tutorial on how to programatically get in progress items and filter based on reference and prepare the ItemData dictionary anew and send it to another queue or the same queue.
We use this approach to populate the queue in many of our process, which have to rerun using the same items in the queue (be it application exception, business exception or in-progress items).