I am new to this topic .
How to create those Queue Start & End Time, then I need to add those items into queue?
Thanks in Advance.
I am new to this topic .
How to create those Queue Start & End Time, then I need to add those items into queue?
Thanks in Advance.
First you need to create the Queue Items into the Queues
Queue Items are nothing but Let suppose you have excel data and you have multiple rows, So, row by row you need to push to some website then the rows become your Queue Item
So to create the Queue Items first you need to create Queue in Orchestrator and then use Add to Queue or Bulk Add to Queue Item Activity
And the start and end of the Queue Item will decide how much time bot took to complete that transaction
Hope this may help you
Thanks,
Srini
i would like give format for the queue start time & End Time, how can I do that through UiPath Studio.
Hi,
// Create a variable to store the queue start time.
DateTime queueStartTime = DateTime.Now;
// Create a variable to store the queue end time.
DateTime queueEndTime = queueStartTime.AddMinutes(10);
// Create a QueueItem object.
QueueItem queueItem = new QueueItem();
// Set the queue start time and end time of the QueueItem object.
queueItem.QueueStartTime = queueStartTime;
queueItem.QueueEndTime = queueEndTime;
// Add the QueueItem object to the queue.
AddQueueItem(queueItem);
`// Create a variable to store the queue items.
List queueItems = new List();
// Add the QueueItem objects to the queue items list.
queueItems.Add(queueItem1);
queueItems.Add(queueItem2);
// Add the queue items list to the queue.
AddQueueItems(queueItems);`
This code will first create a list to store the QueueItem objects. Then, it will add the QueueItem objects to the list. Finally, it will add the list to the queue.
Thank you for the clear information.
Please can you create xaml, and send it to me.