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?
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
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.
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