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

SAVROLE limiting access to certain users and certain request options

venkat
New Contributor III
New Contributor III

Use case:-

We want to limit a user with savrole  Sav-limit-access to only submit cases for certain users. They should be able to select only certain users and submit RequestAccessforOthers,  ViewExistingAccess, RequestEnterpriseRoles

We have configured the following HQL in a sav role for Whom to Request

[{"for":"RequestAccessforOthers,ViewExistingAccess","query":"select a from users a where (a.customproperty11 like 'GXXXXX' or a.customproperty13 like '%xxx%') and a.statuskey = 1"}]

 

we have the following feature in the sav role added 

Request Enterprise Roles- Classic Experience

We can search for users that meet the conditions above for Request access for others and view existing access.  We cannot search for users that meet above conditions for RequestEnterpriseRoles

how can we acheive this.  

i tried the following and it did not work

[{"for":"RequestAccessforOthers,ViewExistingAccess,RequestEnterpriseRoles","query":"select a from users a where (a.customproperty11 like 'GXXXXX' or a.customproperty13 like '%xxx%') and a.statuskey = 1"}]

please advise

 

 

1 REPLY 1

rushikeshvartak
All-Star
All-Star

Issue is U should be capital in table name

 

[{"for":"RequestAccessforOthers,ViewExistingAccess","query":"select a from Users a where (a.customproperty11 like 'GXXXXX' or a.customproperty13 like '%xxx%') and a.statuskey = 1"}]

 

rushikeshvartak_1-1722902388726.png

rushikeshvartak_0-1722902488508.png

 

 

 

My configs 

[{"for":"RequestAccessforOthers","query":"select a from Users a where a.username='137658' and a.statuskey=1"},{"for":"ViewExistingAccess","query":"select a from Users a where a.username='137658' and statuskey=1"},{"for":"RequestEnterpriseRoles","query":"select a from Users a where a.username='137658' and statuskey=1"}]

 


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