Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

print all entitlements when remove access complete

cgowda
New Contributor II
New Contributor II

Hi Experts,

we have requirement to print all entitlements when remove access complete for one application and we have added email template at endpoint level to trigger when remove access complete.

I tried with below binding variable but it's printing only one entitlement not all

${task?.entitlement_valueKey?.entitlement_value} 

could you please let me know how if anyone has answer.

 

Thank You,

Chandan Gowda

2 REPLIES 2

rushikeshvartak
All-Star
All-Star

Email template is attached where ? On approval / task completion ?

if its task completion then ${entitlement} is correct variable

else you can find exposed variables in email template using below code

${this.binding.variables.each {k,v -> println "$k = $v" + "<" + "br" + ">"}}


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.

cgowda
New Contributor II
New Contributor II

thanks @rushikeshvartak