- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-31-2017 07:14 AM
When a user chooses to close their incident from the portal, is it possible to make the resolution code and resolution notes be auto-filled with specific details? At the moment, the incident is just being resolved without either notes or code, which is not ideal when reporting
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-16-2017 06:25 AM
Ended up doing this:
(function executeRule(current, previous /*null when async*/) {
// Add your code here
gs.log("Test");
current.u_resolution_notes="No longer required - Incident set to Resolved by Customer";
current.update();
current.u_resolution_code = "Unresolved - Closed by Customer";
current.update();
})(current, previous);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-31-2017 07:16 AM
Referring to a user with no roles

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-31-2017 07:18 AM
Hi Maymun,
You can have an after business rule written when the state changes to Closed//resolved & set the resolution code & notes accordingly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-31-2017 07:40 AM
Hi Jaspal, how would I specify the resolved by condition in the business rule?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-31-2017 07:56 AM