How we can trigger the Orchestrator Triggers from Process?

Hi Friends,

Good Day!

How we can trigger one of the Orchestrator triggers from Process?

For Example: We have 3 triggers.

  1. Process. Dispatcher
  2. Process. Performer
  3. Process.Reporter.

How I can trigger the Reporter Trigger from the Performer Process?

Thank you in advance.

-With Best Regards,
Malak Dudhia

1 Like

you cannot directly trigger one Orchestrator trigger from another trigger. Orchestrator triggers are typically used to schedule and start jobs, and they do not have a built-in mechanism to trigger another trigger.

  1. Create a separate process for the “Process.Reporter.”
  2. In your “Process.Performer,” after it has completed its tasks, use the Orchestrator Queue to add a specific item to a queue that is monitored by the “Process.Reporter.”
  3. Configure the “Process.Reporter” to monitor the queue and start a job whenever a new item is added to that queue. This job can then perform the reporting tasks.

By doing this, you indirectly trigger the “Process.Reporter” from the “Process.Performer” by adding items to a queue that the “Process.Reporter” is configured to watch, and it will start the reporting job when items are added.

@malak.dudhia

Why would you use the API? Just use the Add Queue Item activity.

There are many ways to do it

  1. You can use START JOB activity at the end of performer process where u can pass the process name u want to trigger in orchestrator
  1. As a second option if u r writing any queues from performer process which will be used by Reporter process then you can try with QUEUE TRIGGER where a moment when a queue item is added to a queue the tagged process will get triggered immediately
  1. Finally you can try with simple API calls
    Where in performer process at the end use a HTTP REQUEST activity
    and make api calls to trigger the Reporter process in UiPath

To know more about how to to use api in triggering bots refer this

Hope this helps

Cheers @malak.dudhia

Hope it’s clarified @malak.dudhia