- 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
11-25-2024 03:16 AM
Hi @GnaneshP hopefully you found a solution to this, apologies I missed your reply!
I think everything you have looks good and it's the notification setup, namely the when to run tab. I expect your condition (below) is clashing and stopping the notification from triggering. You should not need any conditions on here, because the BR which triggers the event is conditional itself - so you would want to run every time the event triggers.
Hope that helps!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2023 07:41 AM
how can i send the same to Microsoft teams ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2025 06:02 AM
How can we send to microsoft teams using virtual agent chatbot