"Submit for Review" Business Impact Analysis
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2024 11:14 PM
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

Community Alums
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2024 08:15 PM
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));
}