I have multiple processes in my enterprise orchestrator. I want to club 10 processes and run them once in a way that all processes run one after another without any manual support. In what ways can I achieve this?
@User123987 Hi, to run all the processes which are interlinked, you need to pass the values from one process to other process(output of first process is given as input to second process/queue details) by giving in activity as Add queue item with all the required keys and values (at end of each process). Then trigger all the process from the orchestrator by giving a time gap.
Note: Above solution is for the processes performed in RE framework
The processes are not connected, they are different processes. I just want them to run whenever I want without a trigger. I also want them to run separately if I want to. Is there any solution to that?
The scripts are sequence not re
for this case at the end of each process you can include a start job activity to start the next process
if you want to run individually then run them as you need else as per start job the next gets triggered
cheers
Not good enough. As I want the process to run alone if I want to. But this would start a chain every time.
You can add a if condition around your start process and add the condition variable as an argument to the main.xaml…and if you want to run it alone then set the value to false when triggering from orchestrator else it would be true to start the next process
cheers
Hi @User123987
Use a Queue: Set up a queue in UiPath Orchestrator and add all the processes as queue items. Configure each queue item with the necessary input parameters for the corresponding process. Then, create a single robot process that retrieves items from the queue and executes them sequentially. This way, the processes will run one after another automatically without manual intervention. You can monitor the progress and view the execution logs in Orchestrator.
Hope it helps!!