- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 hours ago
Hi All,
I was exploring the option of adding an ‘Incident Accept’ button to the dropdown. The idea is that during an outage or major issue, users can simply check the corresponding box and select the ‘Accept’ option from the dropdown for quicker handling.
Before proceeding further, I would like to get your feedback on this approach and check if there are any objections or business rules that might prevent implementing this feature.
Please share your thoughts.
Solved! Go to Solution.
- Labels:
-
Incident Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
That's fine, but what happens on Click of that Button from list.
Does it change the State field on INC?
There is nothing which stops you from adding that UI action to list view in Native
💡 If my response helped, please mark it as correct ✅ and close the thread 🔒— this helps future readers find the solution faster! 🙏
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
something like this, but please enhance
function moveIncident() {
var selectedRecords = g_list.getChecked().toString();
// use GlideAjax here and pass these sysIds and then update the state
var ga = new GlideAjax('checkRecords');
ga.addParam('sysparm_name', "updateIncident");
ga.addParam('sysparm_records', selectedRecords);
ga.getXMLAnswer(function(answer) {
if (answer == 'valid') {
alert("Total incidents updated" + selectedRecords.split(',').length);
}
});
}
💡 If my response helped, please mark it as correct ✅ and close the thread 🔒— this helps future readers find the solution faster! 🙏
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago - last edited 2 hours ago
Hi AromaIM,
For me , "After selecting “Accept Incident”, the incident state should automatically update from ‘New’ to ‘In‑Progress’ " - its feasible and using UI action and its logic you can achieve it.
For this requirement "we can implement a pop‑up notification showing the total number of incidents included in the bulk acceptance action." , its not that easy as Confirm() method /alert ( method which showing pop-up) stopped working after Xanadu/Yokohoma version.
So you need to achieve it via GlideModal popup with UI page which needs too much development effort.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
something like this, but please enhance
function moveIncident() {
var selectedRecords = g_list.getChecked().toString();
// use GlideAjax here and pass these sysIds and then update the state
var ga = new GlideAjax('checkRecords');
ga.addParam('sysparm_name', "updateIncident");
ga.addParam('sysparm_records', selectedRecords);
ga.getXMLAnswer(function(answer) {
if (answer == 'valid') {
alert("Total incidents updated" + selectedRecords.split(',').length);
}
});
}
💡 If my response helped, please mark it as correct ✅ and close the thread 🔒— this helps future readers find the solution faster! 🙏
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago - last edited 2 hours ago
Hi AromaIM,
For me , "After selecting “Accept Incident”, the incident state should automatically update from ‘New’ to ‘In‑Progress’ " - its feasible and using UI action and its logic you can achieve it.
For this requirement "we can implement a pop‑up notification showing the total number of incidents included in the bulk acceptance action." , its not that easy as Confirm() method /alert ( method which showing pop-up) stopped working after Xanadu/Yokohoma version.
So you need to achieve it via GlideModal popup with UI page which needs too much development effort.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
That's fine, but what happens on Click of that Button from list.
Does it change the State field on INC?
There is nothing which stops you from adding that UI action to list view in Native
💡 If my response helped, please mark it as correct ✅ and close the thread 🔒— this helps future readers find the solution faster! 🙏
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
