- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2022 11:36 AM
Hello,
I'm trying to get a notification sent from a workflow via firing an event. I'm passing two parameters from the catalog item in the event trigger. I'm trying to include the parameters in the notification, but it is not working and the parameters are not showing in the notification.
Below images shows what I'm doing, please let me know what I need to modify to be able to include the parameters in the notification message.
Regards,
Ziad
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2022 01:29 PM
Hi,
Since the variable in your parm1 is a reference field, you probably want to send the display value?
Please use this in your workflow event activity for the parm1:
current.variables.file_share.getDisplayValue();
Now see if it's properly showing the display label for the file_share selection, instead of the RITM (it may have been showing the ritm due to sys_id coming across...possibly?
Otherwise, please check your event log for that event and see what the parm1 and parm2 is...is that correct?
Please mark reply as Helpful/Correct, if applicable. Thanks!
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2022 11:49 AM
Try using this:
${event.parm1}
${event.parm2}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2022 12:08 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2022 12:45 PM
Hello,
Isn't that what you wanted or is there still an issue?
My apologies, not too sure by your response if that was a good result or not, haha.
Please mark reply as Helpful, if applicable. Thanks!
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2022 01:25 PM
Hi
My expected result that the message would look like
"Your have been granted read access to XYZ" where XYZ is the values in Parameter 1.
Instead it shows the RITM number.
Regards,
Ziad