Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Entitlement History for User Account

BrandonLucas_BF
Regular Contributor III
Regular Contributor III

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.

2 REPLIES 2

rushikeshvartak
All-Star
All-Star

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)

https://saviynt.freshdesk.com/support/solutions/articles/43000521404-saviynt-enterprise-identity-clo... 


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.

BrandonLucas_BF
Regular Contributor III
Regular Contributor III

Thank you.. I think this will get me where I need to be!