"assign" activites error resolution

With most activities I am able to use the ContinueOnError option to continue the workflow in case of a error. However I am not able to find an a way to continue my workflow if the “assign” activity throws an exception other than manually clicking ignore when the activity errors out.

Is there a way to make it so my workflow automatically continues if an error occurs during an assign activity?

Hi @rdale

well if this assign is often making you trouble just put it inside a try catch.

But then what should be put on the catch side? Now i try to do that but want process process contiue when this assign activity get error. But it is not continue now.
@reda

HI @mazlumkacar

You can catch any exception and then add a log activity where you can use the exception message to know exactly what caused the assign to raise the exception.

1 Like

Hi,

you can use invoke workflow and set its property “continueOnError” to TRUE. put your things inside the workflow. it works. when your assign gets exception that workflow will stop to execute and exit and then continue after that invoke workflow activity

If an Assign is failing you’re doing something wrong. Show us your Assign and an example of it failing.