- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2023 07:54 AM
Hi everyone,
I have no idea what the issue here might be, but we started setting up provider notifications (to get rid of mails for our agents) and all of them are working fine when they'll be send to one user (e.g. mentioned by, additional comment/work note added to record etc).
What we now want to have is the simple notification when a new record arrives in one of their groups but is unattended. I used the exact same parameter as for our email notification, and added "Recipients listed in field" > Assignment Group.
Content Class is set to Next Experience.
However, no notification is to be shown by the bell. The trigger is somehow successfully working it seems, as far as I can see in the log.
We're getting the following in the logs for the execution:
For Synchronous Providers: Loaded 1 recipients and 0 destinations and delivered to 0 destinations in 4ms
For Synchronous Providers: 'INC: Assigned to group' do not have any associated Common Content or Provider Content or Default Content for the Provider 'Workspace', this provider will not be initialized.
For Asynchronous Providers: Loaded 1 recipients and 0 destinations and delivered to 0 destinations in 4ms
Can someone help me out?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2023 05:49 AM - edited 08-31-2023 05:57 AM
(function executeRule(current, previous /*null when async*/ ) {
gs.eventQueue('testEvent', current, getGroupMembers(current.assignment_group), current.number);
})(current, previous);
function getGroupMembers(groupID) {
var groupArr = [];
var groupMemberGR = new GlideRecord('sys_user_grmember');
groupMemberGR.addQuery('group', groupID);
groupMemberGR.query();
while (groupMemberGR.next()) {
groupArr.push(groupMemberGR.user.sys_id.toString());
}
var stringArray = groupArr.join();
return stringArray;
}
Have a go with the above, this is the business rule script (just replace the eventname "testEvent" with your own). The condition I set was just when assignment group changes.
The event log looks like this when triggered:
(note all the user sys_ids, comma separated in parm1).
Looking at the logs above it looks to be working
Let me know if any luck/still issues. This is for the notification bell notifications right? (workspace experience > administration > notification triggers)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2023 12:45 PM
I have followed your steps above and was able to get a notification to popup when a Live Agent chat is in progress and the Agent clicks on Help. The only issue I have is that the message says 'Short Description field is empty'. How do I fix this?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2023 07:02 AM
I think it literally means that your short description is empty, I think the system substitutes it with that instead of leaving it blank:
My example is running on the incident table. Did you add then field message/short description in manually or did you use the field picker to the right of the message field?
i.e I'm wondering if the table you are running on doesn't have a short description field. Or the example that you triggered the test on just happened to have an empty short description.
Good luck!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2023 08:03 AM
You are right that the short description was blank.
The picture you just provided for the Notification Next Experience Content....is that an oob table? I don't have that installed. I just installed the Notify plugin, but still don't see this table.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2023 08:11 AM - edited 09-14-2023 08:12 AM
Yeah this is just in a fresh PDI instance through SN Developer, I haven't activated any other plugins in it.
workspace experience > administration > notification triggers
There is a related list at the bottom of the notification:
When you click "new provider notification" I get the below and pick "next experience".
Edit:
Table is [sys_notification_next_experience_content] 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2024 07:49 AM
I followed the same steps mentioned above, I can see the logs but didn't receive the notification. @Rhodri can you please help? I'm trying this in PDI.
1. Event - incidentGroupAssigned
2. Notification record
3. Notification content
4. Business rule script
5. No notification received
6. Event log