Sorry for the vague title, hear me out.
Situation:
Im working on a project where I want to process certain invoices. All these invoices have an unique reference, I use this reference as the unique queue reference. Some invoices cant be handled by the robot (which is fine, I want to skip them) But the problem is, they stay in the list in my ERP system. So when my robot checks for new invoices, it first recognizes the invoice that couldnt be handled which then leads to an error because the invoice is already in the queue.
Solution:
When the robot recognizes that an invoice is already in the queue, I want the robot to skip it. So basically:
Add transaction item → Faulted → Set of activities which skips the invoice → Add transaction item → continue with the workflow
Is there an solution for this problem?
Kind regards