On Approval Notification how can I pull the Catalog item name?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2023 06:30 AM
Hi,
I am creating a notification in approval table for requested item. How can I pull the catalog item name?
Subject: Approval request for ${sysapproval} <Catalog Item Name>
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2023 06:39 AM
Hi @Jet R,
You will need to create a mail script:
var item = current.sysapproval.getRefRecord().cat_item.getDisplayValue();
template.print(item);
Help others to find a correct solution by marking the appropriate response as accepted solution and helpful.