
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2025 10:16 PM
Hello ,
I have case to send the notification to impersonated user of "People solution" group
For this, We created script action , event, notification and mail script.
We are not able to fetch parm1 and parm2 in mail script. We get either of event parameter and not both.
Script action-
${event.parm1} impersonated ${event.parm2} account.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2025 11:30 PM
Hi @Community Alums , in here - gs.eventQueue('impersonation.people_support', 'sys_user', impersonater_user1, impersonate_user); instead of that - use
gs.eventQueue('impersonation.people_support', grUserMemberCheck, impersonater_user1, impersonate_user);
If It's still not working. Please log the values of the 'impersonater' and 'impersonate' variables.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2025 10:45 PM
HI @Community Alums ,
From which server side script you are calling this gs.eventQueue('impersonation.people_support','sys_user', impersonater_user1, impersonate_user);
Best Regards,
Pooja

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2025 10:50 PM
Script action
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2025 11:09 PM
Hi @Community Alums ,
in gs.eventQueue(), add second parameter as Glide Record object of user table or group table instead of 'sys_user'.
Kindly mark it as correct/helpful if this solves your query.
Best Regards,
Pooja
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2025 11:30 PM
Hi @Community Alums , in here - gs.eventQueue('impersonation.people_support', 'sys_user', impersonater_user1, impersonate_user); instead of that - use
gs.eventQueue('impersonation.people_support', grUserMemberCheck, impersonater_user1, impersonate_user);
If It's still not working. Please log the values of the 'impersonater' and 'impersonate' variables.