Multiple choice technology performance

In a VUGen script, we have checked the "Continue on Error"-Run-Time Settings, but in the script there is lr_continue_on_error(1) set before a transaction xyz. Suppose the transaction xyz fails , what will happen?

  1. The script will continue without recording any errors

  2. The script will report the error and fail

  3. The script will give a error pop up and continue

  4. The script will continue but only xyz transaction status will be "FAILED".

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

When lr_continue_on_error(1) is set before a transaction, it overrides the global 'Continue on Error' setting and forces error handling for that specific scope. The transaction xyz will report the error and the script will fail at that point, not continue silently. This function provides localized error control.