Click HERE to see how Saviynt Intelligence is transforming the industry. |
08/21/2024 06:50 AM
Hi Team,
I want to send an email template to particular user's manager reminding about users end date is after 14 days. Can we do it through Analytics or user update rules and how?
08/21/2024 06:55 AM
You can do same with analytics
Refer
Example 6: Email to list all the managers and the details of their sub-ordinates. Manager receives a single email with the details of all the sub-ordinates.
08/21/2024 06:59 AM
cool and how to create that analytics.
08/21/2024 07:02 AM
SELECT U.username AS username ,U.firstname AS 'First Name' ,U.lastname AS 'Last Name' ,U.email AS 'User email' ,date_format(u.enddate,"%Y-%m-%d %H:%I:%S") as 'End Date',( SELECT CONCAT ( firstname ,' ' ,lastname ) FROM users WHERE U.manager = userkey ) AS 'Manager Name' ,( SELECT email FROM users WHERE U.manager = userkey ) AS 'Manager email' FROM users U WHERE u.employeetype IN ('Contractor') AND u.statuskey = 1 AND datediff(enddate, now()) = 15
08/21/2024 07:19 AM
how a email template or a analytic know which email template to trigger or which analytic will get trigger by email template.
08/21/2024 07:37 AM
08/21/2024 08:48 AM
I am not getting this option of email template. How I'll get this.
After making the changes in Global config. Does it require a restart.?
08/21/2024 09:08 AM