Multiple Queues in Single RE Framework

Hello Everyone,

I need to process two queues from one RE Framework, First I want to pick items from Q1 and Process once done done, I want to sent summary mail, Afterwards Bot need to Pick second queue Q2 and process similarly,
Here how to use two queues and where to place Summary email xaml and where to place status Datatable, Kindly suggest.

In your Get Transaction, you’ll have to do something like…

  • For Each in listOfQueues
    – Get Queue Items using currentItem as the queue name (filter to get just one item and only New items)
    – If queueItems.Count > 0
    — Get Transaction
    — Break

This way, if there is nothing in the first queue it will look in the second queue.

@Manii_K

Rather than handling it in while running in same process…as it is having separate summary emails as well…one thing we can do is to pass the queue name as an input argument to the process this way the same process can work with different queue…in_orchestratorqueuename argument is where we need to pass the queue name

If starting the queue 2 process after queue 1 is mandatory then use a start process at end of process/job and start the process with sifferent queue name…

Cheers