Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

Access Provisioning through analytics

GoutamAhirwar
New Contributor III
New Contributor III

Hello,

We have task to provisioning entitlements to the accounts for specific endpoint through analytics query i used different method to do it but unable to find solution. 

can you   guide me  on how to solve this.

 

5 REPLIES 5

armaanzahir
Valued Contributor
Valued Contributor

@GoutamAhirwar 

 

Please refer the following documentation and model the query along the sample provided below:


select ev.entitlement_valuekey as entvaluekey, a.accountkey as acctKey, a.name as accName,u.userKey from entitlement_values ev, entitlement_types et, accounts a, user_accounts uwhere ev.entitlementtypekey=et.entitlementtypekey and et.endpointkey=6 and a.accountkey in(select accountkey from accounts where endpointkey=6) and u.ACCOUNTKEY=a.ACCOUNTKEY;

 

armaanzahir_0-1702637034436.png

 

Configuring Allowed Actions (saviyntcloud.com)

 

 

Regards,
Md Armaan Zahir

Thanks for your concern But my case is different i want provision entitlement to accounts with the use of analytics query eg. 

case when u1.STATUSKEY=1 then 'Active' when u1.STATUSKEY=0 then 'Inactive' end as UserStatus,

u4.NAME,u5.ENDPOINTNAME,u6.ENTITLEMENTNAME,u7.ENTITLEMENT_VALUE,

'Provision Access' as Default_Action_For_Analytics,

 Just like this format

rushikeshvartak
All-Star
All-Star

Please share current query.

 

please refer documentation 

https://docs.saviyntcloud.com/auth/login/?redirect=%2Fbundle%2FEIC-Admin-v23x%2Fpage%2FContent%2FCha...


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

dgandhi
All-Star
All-Star

This can be achieved using Actionable analytics.

Make sure you have below fields in your analytics query

entvaluekey - Entitlement value key of the entitlement to which the account will be assigned.
acctKey - Accountkey of the account to provision with the entitlement.
accName - Name of the account to provision with the entitlement.
userKey - Userkey of the user to whom the account is mapped.

Thanks,
Devang Gandhi
If this reply answered your question, please Accept As Solution and give Kudos to help others who may have a similar problem.

Manu269
All-Star
All-Star

@GoutamAhirwar check out this sample provided here :

Provisioning or deprovisioning assignments from SAV Role via Analytics (saviyntcloud.com)

Regards
Manish Kumar
If the response answered your query, please Accept As Solution and Kudos
.