Click HERE to see how Saviynt Intelligence is transforming the industry. |
02/16/2024 11:49 AM
When i do an export/excel of Completed or Pending Tasks from the UI a message comes up stating that " A background job has been started to generate report." An email will be sent once the report is available for download."
I don't get an email. Where can i get this download or why is this not working from the UI as i don't have any jobs running? Thanks
Solved! Go to Solution.
02/16/2024 11:53 AM - edited 02/16/2024 11:56 AM
It will available in right side click on Login User ID , please ref below SS
02/16/2024 12:39 PM
I don't get the My Downloads option there. I also have the admin role. Thanks
02/18/2024 08:20 PM
Navigate to Admin > Global Config > Preferences > NOTIFICATIONS > enable Download Files
02/16/2024 01:53 PM
When number of records are more than 10MB, saviynt perform background job to export data . Job can be seen under running job as ReportExportJob. Once job is completed report will be found under downloads sections of user. Email will be only sent if it’s configured under global configuration- analytics - Report completion email
The Analytics Report email template is used to trigger an email with the analytics report that provides several details as explained in following examples. Recipients are notified each time an analytics report is run. They also receive a copy of the data as an excel attachment in the email. If the attachment size exceeds 10 MB, it is not sent over email and the same is notified within the email.
Sample template:
Prerequisites:
In an analytics report, it is mandatory to include the username column in the analytics query to trigger the notification to users when ${userEmail} is added in the TO/CC fields.
Example 1: Email to inform users whose records are part of analytics control result that a new report is generated.
To: ${userEmail}
Subject: New Report available
Body:
Report - ${analyticsConfig.analyticsName} has been generated. Log in to EIC and navigate to the Analytics tab to access the report.
${ANALYTICSDATA}
04/05/2024 06:53 AM
Rushikesh,
This is not solving the problem. We can get to the My Downlods.
But the issue is how to configure an email template so that we can send instructions to the person who exported the report?
What email variables to use?
The email variables in the Saviynt documentation do not work. here is an example.
User Email: ${userEmail} : ${users.email}
Operation: ${operation}
First name: ${users.firstname}
last name: ${users.lastname}
Date: ${date}
Filename: ${filename}
Anand
04/08/2024 09:41 PM
To get what variables are present to use in the email template, check using the below expression. By putting it in the email body, it will print all variable names with values, and then accordingly, you can use it:
${this.binding.variables.each {k,v -> println "$k = $v" + "" + "br" + ">"}}