Hi
@Maureen Sharon,
Yes, that is absolutely correct that the bot can work on multiple resources at the same time but you need to make sure that :
1) Your current license has the capability to run multiple sessions at the same time. If you have purchased only one license to run in production, then you can run max the process in only 1 machine and not more than that.
2) Your process is designed in multi bot fashion. It should not be the case that whenever the bot runs, it adds all the data to the work queue and then starts working on it. In such scenario, if 2 bots are working at the same time, then both will add the data to the queue hence causing duplication of data items in the queue.
To avoid such scenario, the process should be divided in 2 sub-processes-
a)
Loader process - To load the data to the work queue
b)
Execute process/Processor process - To process the queue data in multi bot fashion.
Please let me know if you still need any clarification.