Click HERE to see how Saviynt Intelligence is transforming the industry. |
09/03/2024 10:39 AM
Hi Experts,
We have a runtime analytics(report of active accounts assigned to terminated users) to trigger emails with attachment to application owner.
Case1: We have to print email address in TO field using if else, i tried below one but didn't trigger email
<% if(endpoint.endpointname=="Active Directory") print "abc@gmail.com"
else print "" %>
Case2: We have to print application name using if else in body of the template, i tried below one but didn't trigger email
<% if(endpoint.endpointname=="Active Directory") print "Active Directory"
else print "application" %>
please suggest if you know any other way to trigger
Regards,
Chandan Gowda
Solved! Go to Solution.
09/03/2024 10:58 AM
Example 3: Email to inform control owner that account password is about to expire.
09/03/2024 11:50 AM
Hi @cgowda can you try this once?
<% if(${ANALYTICSDATA.'Application'[0]}=="Active Directory") print "abc@gmail.com"
else print "" %>
Regards,
Indra
09/03/2024 12:24 PM
@cgowda
${ANALYTICSDATA.'APPLICATION'[]} This will work.