Click HERE to see how Saviynt Intelligence is transforming the industry. |
09/16/2022 10:20 AM
Is there any part of the database schema that would allow querying for the history of an entitlement on a given user account? I'd like to see when an entitlement appeared on a user account during application data import.
Solved! Go to Solution.
09/16/2022 10:29 AM - edited 09/16/2022 10:34 AM
You can find information in account_entitlements1 table, based on job_id column but this column will be updated as per last import job execution
select distinct accountkey,entitlement_valuekey,job_id j,jobstartdate from account_entitlements1 ae1,ecmimportjob e where ae1.job_id=e.jobid and accountkey in (select accountkey from accounts where endpointkey =3)
09/19/2022 06:42 AM
Thank you.. I think this will get me where I need to be!