PARTNERS - Please join us for our upcoming webinar:
Leveraging Intelligent Recommendations for Operational Transformation.
AMS Partners click HERE | EMEA/APJ Partners click HERE

Need Binding Variable for email templates which using in Workflow

kmashwini
Regular Contributor
Regular Contributor

Hi,

Need Binding Variable for entitlements which should get in tabular column from pending approval for email template using in workflow. We have already tried ${entitlementshtmltablerowsv2}, ${entitlementshtmltablerows}, ${entitlements}. 

These are giving entitlements values correctly but not coming in tabular format.

Please suggest me binding variable which will give me entitlement value in tabular column from pending approval request.

6 REPLIES 6

PremMahadikar
All-Star
All-Star

Hi @kmashwini ,

You tried passing the entire code?

Requested Group : 
"<table border=1 cellpadding=0 cellspacing=0 style=font-family: Poppins Light> <tr> <th>Application</th> <th> Groups </th> <th> Description </th> <th> Glossary </th> </tr> ${entitlementshtmltablerows}</table><br>" 

Or 

try the below:

<table>
<tr >
<th style="background: rgb(255, 192, 0);vertical-align: top;">
<p >Application</span></strong></p>
</th>
<th style="background: rgb(255, 192, 0);vertical-align: top;">
<p >Entitlement</span></strong></p>
</th>
<th style="background: rgb(255, 192, 0);vertical-align: top;">
<p >Entitlement Description</span></strong></p>
</th>
<th style="background: rgb(255, 192, 0);vertical-align: top;">
<p >Display Name</span></strong></p>
</th>
<th style="background: rgb(255, 192, 0);vertical-align: top;">
<p >Business Justification</span></strong></p>
</th>
</tr> ${entitlementshtmltablerowsv3}
</table>

Solved article reference: https://forums.saviynt.com/t5/identity-governance/requested-entitlement-in-tabular-format-in-email-t...

 

If this helps, please consider selecting Accept As Solution and hit Kudos

rushikeshvartak
All-Star
All-Star

Please confirm where is email template is attached


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

@rushikeshvartak  Workflow is the where we attached email template

Can you share screenshot. What if field name ? Notification to Requestor / Reminder etc


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

Hi Attached screen shot for your reference. where I have scrambled is the one we are receiving entitlements , we need those in tabular format. Notification sent to assignee which is manager of user. currently we are using ${entitlementshtmltablerows}. @rushikeshvartak 

kmashwini_0-1717496830560.png

 

kmashwini
Regular Contributor
Regular Contributor

@PremMahadikar Thanks . <table border=1 cellpadding=0 cellspacing=0 style=font-family: Poppins Light> <tr> <th>Application</th> <th> Groups </th> <th> Description </th> <th> Glossary </th> </tr> ${entitlementshtmltablerows}</table><br> This is working