The process will run from the orchestrator trigger then the same process will run again once the completion of first run. How can we achieve this in orchestrator.
Hi @Vanitha_VS
You can achieve this using Queue Trigger UiPath Orchestrator
Follow the approach
1 Create a Queue Trigger for your process
2 When the process runs, it will pick queue items
3 After completion, if new items are added, it will automatically trigger again
If Solution works for you please mark as solution
Thanks
If the process needs to run always two times
then just use a start job at the end, and have an input parameter/argument to your process, set the argument to true with orchestrator trigger and in start job set same parameter to false
use the parameter in if condition and on true side sue start job
so that everytime you start process from orchestartor at the end it would start the same process once again
cheers