Running processes one after another for orchestrator

I have two process the are separate from each other and are published under one project. I want to run each process one after another by trigger the other once its done. I do not want it to be triggered by time. I know that’s one work around.

It is a basic feature of Orchestrator. You must communicate processes through queues.
At the end of the first process you can add a queue for the second process. And the second process configure it to trigger by queues.

I don’t think there is another way to do it via orchestrator if not by using queue trigger, as @lepumin mentioned.

However, you can achieve this via code using “Start Job” activity. You could place it at the end of process1 and then the process2 would started.

image

2 Likes

Hi @Shazid_Rahman

Orchestrator allows you to orchestrate the execution of repetitive business processes by Uipath Robots

Refer this Documentation

  • You can easily use a controller workflow to achieve this.
  • The controller will have a list of processes that you need to execute and it will take care of it so that you don’t need to run them one by one.

Regards
Gokul