If Error occur, how to skip the error workflow?

In my robot, there are three components, FA Control, MU Rep, and MU bias. May I ask that if one component, FA Control has error, how the robot keep continue on MU Rep, and MU bias;
if MU Rep has error after fa control, how the robot keep continue on MU bias?

Can anyone give me an illustration based on my work…Althogh it’s quite long…Thanks you so much

Workflow:
FA Sorting MU-rep MU-bias try.xaml (147.4 KB)

1 Like

@Happydayyy,

You can split the code into different workflows and add that logic into try catch.

Invoke these workflow as per your business logic.

This should work as you required.

Thanks,
Ashok :slightly_smiling_face:

Hi,

Surround FA Control with Try catch.
Surround MU Rep,with another try catch.
Surround MU bias with one more try catch.

So, whenever error comes bot will continue next process.

Thanks