If i configure a global handler with an error action of ignore afaik after the retry count the robot will move onto the next activity, is that correct
with regards to context, if i have a sequence one with multiple activities contained within and the other which is start-job process to restart the entire sequence preceding it would this work or does the start-job have to go behind the failed one within the sequence?
If its the latter surely using a try catch block is the same with the catch using the start-process activity?
Did not get the scenario but this is how global handler ignore works
Say your have a sequence with 10 activities and 5th activity failed…then if you configure ignore it starts from 6th activity ignoring the error on 5th
The functionality you need is for try catch…global handler will be a separate sequence all together you cannot add it anywhere…when some error occurs it gets triggered and depending on thw condition the global handler has multiple outcomes ofcourse one of which is ignore.