We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

"Submit for Review" Business Impact Analysis

EriA
Tera Contributor

Documentation seems to be limited but what does "Submit for Review" do on a Business Impact Analysis. Nothing seems to happen when I click it. My guess is that it's supposed to be a trigger for a notification to the BCM Lead, alerting them to review what was done on the form.

1 REPLY 1

Not applicable

Hi @EriA ,

That's right, it triggers for a notification to the BCM Lead and changes the state to Review.

This is the Script used :

    gs.addErrorMessage(gs.getMessage("To submit for review, select a BCM Lead. Otherwise submit for approval."));
} else {
    current.state = 20;
    current.update();
    action.setRedirectURL(current);
    var escapedName = new sn_bcm.BCMUtils().escapeHTML(current.getValue("name"));
    gs.addInfoMessage(gs.getMessage("{0} successfully submitted for review.", escapedName));
}