
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2019 02:20 PM
I have some users that are not getting any email notifications i.e. open incident, approvals, etc... When I go into one of the notifications and click "preview notification," their name is crossed out in red and it states: "excluded recipients because user has no usable devices." Not sure what that means.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2019 11:00 AM
Bryant,
The issue is likely a result of an inactive or missing Notification Device Record for Penny Hammer. Please check the cmn_notif_device table for a record related to user Penny. I included a background script to quickly determine if the record exists and its current state.
var gr = new GlideRecord('cmn_notif_device');
gr.addEncodedQuery('user.nameLIKEPenny Hammer');
gr.query();
if (gr.next()) {
gs.print('Notification device record found for: ' + gr.user.name + ' record is currently: ' + gr.active + '!');
} else {
gs.print('No notification device record found');
}
If the record is not active use the fix-script below. If the record is missing you will need to troubleshoot the BR for adding/updating this related record on the sys_user table.
var gr = new GlideRecord('cmn_notif_device');
gr.addEncodedQuery('user.nameLIKEPenny Hammer');
gr.query();
if (gr.next()) {
gr.active = true;
gr.update();
}
Thanks,
Derrick Johnson

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2019 10:42 AM
They do not have access to that section. Only profile view is available.Their not an ITIL user.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2019 11:00 AM
Bryant,
The issue is likely a result of an inactive or missing Notification Device Record for Penny Hammer. Please check the cmn_notif_device table for a record related to user Penny. I included a background script to quickly determine if the record exists and its current state.
var gr = new GlideRecord('cmn_notif_device');
gr.addEncodedQuery('user.nameLIKEPenny Hammer');
gr.query();
if (gr.next()) {
gs.print('Notification device record found for: ' + gr.user.name + ' record is currently: ' + gr.active + '!');
} else {
gs.print('No notification device record found');
}
If the record is not active use the fix-script below. If the record is missing you will need to troubleshoot the BR for adding/updating this related record on the sys_user table.
var gr = new GlideRecord('cmn_notif_device');
gr.addEncodedQuery('user.nameLIKEPenny Hammer');
gr.query();
if (gr.next()) {
gr.active = true;
gr.update();
}
Thanks,
Derrick Johnson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2022 05:24 AM
Thank you very much.. your information really helped me to fix the similar issue 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2020 03:29 PM
Thank you very much friend, your idea worked.