Hi @Community,
I need to fetch max Queue retry count from orchestrator and use this variable. As I’m working on 3 queues , I need to transfer all data to 1 queue for summarizing.
Thanks,
Chiranjit
Hi @Community,
I need to fetch max Queue retry count from orchestrator and use this variable. As I’m working on 3 queues , I need to transfer all data to 1 queue for summarizing.
Thanks,
Chiranjit
HI @ch460960
Iterate through the items in each of the three queues, and for each item, check the current retry count against the maximum retry count obtained in step 1. If the retry count is less than or equal to the maximum retry count, add the item to the summary queue.
Use the “Get Queue Items” activity to retrieve items from each of the three queues. Then, use a loop to iterate through the items and check the retry count. If the retry count is within the acceptable range, use the “Add Queue Item” activity to add the item to the summary queue.
Regards
Hi @ch460960 ,
To fetch the maximum Queue retry count from Orchestrator in UiPath, you can use the Get Queue Items activity and iterate through the list of items to find the highest retry count. Store this value in a variable, which can then be used in your workflow. As you are working with 3 queues and need to summarize the data, you can use the Add Queue Item activity to transfer all the data from the 3 queues into a single queue, where you can perform the required summarization.
Thanks,
++ Success and Business exception part is taken care . Just wanted to check in case of System exception, if reaches max retry no add details to queue
how do I check - If the retry count is less than or equal to the maximum retry count? cause max retry count in queue can be dynamic.
@vrdabberu This post is helpful . Thanks
But I’m using RE-framework is there any dedicated variable to use to get Max retry from orchestrator?
use transactionItem.RetryNo