Check failure of set of actions

 

Hi
 
I have two sets of actions, set 2 should be execute only if all actions in set 1 completed successfully
Whast is the best way to check it ?
 
All actions in set 1 are marked as "Ignore failure" so I don't think I can use the TRY CATCH for this,
another option is to set a variable in the "AfterAction Event" but I will have to add it to all 100 actions.

Hi Elad,

There’s a predefined FinalBuilder system variable named FBIgnoredErrors that contains the global count of ignored errors in a build. You should be able to use this to determine whether any actions within a set range have had ignored errors, you’ll need to look at the value before the actions are run, store the current value and then compare that once the actions have run.

Regards,
Paul.

Thanks, exactly what I needed.