reopen incident action not visible on ec portal
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-30-2023 09:18 AM
please find attached screenshot:
'reopen' action is not visible.its oob widget
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-27-2025 11:50 AM
I had a similar requirement and the way we got this working is by adding a custom function on the IncidentUtils Script Include. Please see below:
canReopenIncident: function(current) {
return current.incident_state == IncidentState.RESOLVED && (gs.getUser().hasRole('snc_internal') || gs.getUser().hasRole('itil')) && !this._isMajorIncident(current);
},
type: 'IncidentUtils'
});