Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

All the entitlement associated with account should display in an email

rahulyadav
New Contributor
New Contributor

Hello everyone,

I want to display all the entitlement associated with the accounts in email, what is the binding variable i can use.

Usecase is as following: If Requestor request for an access then the approver must get notification what are the access he already have and what new access he have requested.

Thank You.

2 REPLIES 2

Amit_Malik
Valued Contributor II
Valued Contributor II

Hi @rahulyadav , this is not possible OOTB.

For existing access , you can create a report for entitlement owners.

For entitlements in email. You can also use ${this.binding.variables.each {k,v -> println "$k = $v" + "" + "br" + ">"}} to find what binding variables are supported

https://docs.saviyntcloud.com/bundle/EIC-Admin-v24x/page/Content/Chapter06-EIC-Configurations/Creati...

${entitlementshtmltablerows}

Generates HTML Table rows as follows:
<tr><th>EndpointName</th> Entitlement_Value </th><th> Entitlement_Description </th> <th> Entitlement_Glossary </th> </tr>

This does not print <table> start tag and end tag. So, this can be defined in the email template as shown below:
update ecmemailtemplate set templatecontent =
templatecontent = '<div> <br/><table><tr><th>Endpoint</th><th> Entitlement </th> <th> Description </th> <th> Glossary </th> </tr> ${entitlementshtmltablerows} </table> </div>

${entitlementshtmltablerowsv2}

Prints all the requested entitlements, their business justification, start date, and end date, by defining the tags in email template.

${entitlementshtmltablerowsv3}

Generates HTML table to print Application Name, Entitlements, Entitlement Glossary, and Entitlement Description with the start date and end date, and Business Justification as specified by the requestor.

Kind Regards,
Amit Malik
If this helped you move forward, please click on the "Kudos" button.
If this answers your query, please select "Accept As Solution".

rushikeshvartak
All-Star
All-Star

You can't send what all access user already have in request. Approver can check details under view existing access tile in Saviynt.

Consider in large application if user have 100+ access are you supposed to send all in email ? Its not good end user experience 


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