Click HERE to see how Saviynt Intelligence is transforming the industry. |
on 03/30/2023 03:58 PM
Below query can be used to identify all the users which are active in SSM but were not part of the feed of the last full user import. This helps us to identify missing users list to take remedial actions on the users missed-
SELECT
u.DISPLAYNAME,
u.USERNAME,
u.CUSTOMPROPERTY3 AS 'IDENTITYSTATUS',
u.CUSTOMPROPERTY30 AS 'LASTUPDATETIME',
u.STATUSKEY,
u.JOB_ID,
u.CUSTOMPROPERTY22 AS UserEmail
FROM
users u
WHERE
(job_id < (SELECT
ecmimp.jobid
FROM
ecmimportjob ecmimp
WHERE
coments LIKE '%fullorincremental:full]'
AND jobname = 'UserImportJob'
ORDER BY ecmimp.jobstartdate DESC
LIMIT 1)
AND u.statuskey = 1);
NOTE:
Hi @RakeshMG is there any way, I can use some kind of attribute in the technical rule, where the user AD account is created when the user is in the feed after the start date? if the User is not in the Feed then the AD creation task should not be triggered.
example :
XYZ user start date is the 5th then AD should be created on 6th if the user is in feed, if not then AD should not be created