Click HERE to see how Saviynt Intelligence is transforming the industry. |
04/12/2022 01:17 PM
Hi,
How can we enable job failure notifications for file based users import
In case if we have connection, we can set it up at email template level
But how to achieve for file based user import
Thanks
Solved! Go to Solution.
04/12/2022 02:51 PM
any resolution provided for this scenerios
04/12/2022 02:51 PM
Hello,
As we do not have connection defined for schema based import, Other Alternate Solution we can try is to have a analytics report around job status table (ecmimportjobs) with jobname filtered for the scehma family.
Build a report and schedule to send out email notification on daily basis for respective team to take action. A sample query for reference is provided below.
SELECT date(JOBSTARTDATE) as "Job Date", externalconnection as Application, CASE WHEN SAVRESPONSE = 'Success' THEN "Success" ELSE "Error" END AS 'Job Status', count(*) as "Job Execution Count" FROM ecmimportjob where jobname in ('SchemaAccountJob','SchemaUserJob') group by date(JOBSTARTDATE),externalconnection,'Job Status';
Regards,
Sagar Srikantaiah
Product & Partner Success