catalogue item variables populate on notification body
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2024 09:07 AM
i want to populate catalogue item variables values populate on notification body
i triggered notification by using event creation in workflow
i wrote a email script and called in notification body but it's populate only vendorname not value
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2024 09:18 AM
Hi @poco,
Please try this template.print(VendorName). I remvoed the quotes.
Please accept my solution if it resolves your issue and thumps 👍 up
Thanks
Jitendra
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2024 09:31 AM
Hi @poco ,
Please try below script
var VendorName = current.variables.requested_by.getDisplayValue ();
template.print('VendorName: ' + VendorName);// You have given VendorName in string, please try without script
Please mark my answer correct and helpful if this works for you
Thanks and Regards
Sarthak