Can the Uipath be initialized depending on a condition of the sequence?

I have to initialize the program again if it gives an error to try again a second time.

Can this be done with the orchestator? Or with a kind of function?

Thanks.

Hi @Mario_Lopez
You can use try catch for this, if any error In try it will go to catch and you can do the same process again in catch part…

If you want to retry multiple times you can use state machine with try catch…

This is what Queues are for. Your process should be operating out of a Queue in Orchestrator. If a transaction fails you mark it as application error and (if you have retry set to 1 for the Queue) it’ll automatically be resubmitted to the Queue again.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.