
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2019 04:47 AM
I'm calling this line of code on the server side of a widget, but the notification never triggers:
gs.eventQueue('group.mgmt.desc.change.request', '', '194dd9a7db176b4050fbff9aae9619ea', 'hello world');
Here is my "When to send":
Here is my "What will it contain":
And here is my event registry record:
And yes, this is checked:
They sys_id I'm passing (194dd9a7db176b4050fbff9aae9619ea) is a group sys_id.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2019 05:07 AM
Where are you triggering this gs.eventQueue() from? Can you share that bit of code as well?
The second parameter is required. You can use current, any GlideRecord record, and I believe I've used null on occasion.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2019 10:56 AM
Using the Studio code search to validate My Tomasi and Mr Dubuis,....
...we can see that the OOB 'MultiSSO_ClientHelperUI' script include uses the null value.
Line 34: gs.eventQueue("saml.test_connection", null, "request");
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2019 05:26 AM
I've used NULL in the past to fill that parameter
gs.eventQueue('event.name', null, parm1, parm2);