On Approval Notification how can I pull the Catalog item name?

Jet R
Tera Contributor

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

Peter Bodelier
Giga Sage

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.