"Automatically update related vulnerable items" Set to FalseIssue The "Automatically update related vulnerable items" (auto_vi_refresh) box is for Remediation Target records is unchecked after the VUL is approved for exception.CauseThe logic is scripted into the 'Set auto refresh vulnerable items' business rule. The BR will run every time the state value of the VUL changes, such as when it is approved for exception, then will only leave the "Automatically update related vulnerable items" flag checked in the case the VUL is in the 'Open' state with non-manual grouping methods. if (current.state == "1" && current.filter_type != "manual") current.auto_vi_refresh = true; else current.auto_vi_refresh = false;ResolutionChanging this functionality would require customizing the script of the business rule.