Hi,
In my process, in addition to getting new queue items, can I also get “abandoned”, “In Progress” or “Failed” queue item as transaction items?
I am not doing Queue retry, instead I am using retry number set in Config file.
Thank you
Hi,
In my process, in addition to getting new queue items, can I also get “abandoned”, “In Progress” or “Failed” queue item as transaction items?
I am not doing Queue retry, instead I am using retry number set in Config file.
Thank you
Hi @A_Learner
You can retrieve Abandoned, In Progress, and Failed transaction items by using Get Queue Items activity. You can check the tick mark which you want to retrieve. It is present in the properties Panel.
Check the below documentation for more understanding of Get Queue Items activity.
Regards
Hi @A_Learner ,
You can retrieve the Abandoned, failed or In Progress items by selecting the status in the properties pane as shown below.
If you want to fetch and store in different variables and process accordingly then I would suggest 3 get queue item activity each corresponding to 3 different status (Abandoned,In Progress , Failed).
Hope this helps you put.
Happy Automation.!
Thanks,
Gautham.
Get Transaction Item is the REFRamework way of getting a queue item.
And it gets only new items.
How do I use get queue item in REFramework?
Thank you,
In Re Framework, Get Queue Item will take new Queue items to process in “GET Transaction Data” state.
But this activity can be used in a sequence, flow chart or a state machine. Ideally wherever you place it once you configure the folder in which queue is present the queue name, the status (Items that are success/failed/in progress/abandoned). It would give the set of items with the configured status.
If you uncheck the status new in the Get Queue item activity, It will not pick up the items with new status.
Hope I have clarified your doubt. Let me know if you need anything else.
Get transaction item cannot get any other item other than the items in New State…
also if you want to process any other item statuses manually without auto retry…then its better you add a new item in the set transaction status stage so that once an item is failed it adds another item to be processed which will be in new state…this works for failed…
If you need in progress or abandoned items then in init state use get queue items and get all the abondoned and in progress items and use for loop on the returned items and add those items back to queue as needed
Cheers
If unique ref is not set it would allow…else first you can add a delete item and then re add…and for in progress items you need to add a set transaction item and then delete and then add the new item
Cheers
Brilliant!
Can you explain the step in progress, one time please?
Thank you,
Steps 3,4,5 inside loop
Hope this helps
Cheers
Can you please show the code snippet for adding the same queue item again after deleting.
Thank you,
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.