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 Control for "Request Access for Others" - Visibility of endpoint tile

Sergius
New Contributor
New Contributor

Hello everybody,

I have the following challange right now:

An endpoint should be requestable, but only visible to a couple of users.

This is already done via Access Query of the endpoint.

For example:

"Where users.customproperty20='Manager'"

So now only Manager are able to see the tile and to request.

But the problem now is, if a manager wants to request for another employee, and this employee has not the value "Manager" filled in customproperty20, the endpoint/tile is not visible in ARS and consequently not requestable.

 

Is there a way, that the tile is only visible for managers, but the managers can request for every employee?

 

Best regards

Sergius

3 REPLIES 3

pmahalle
All-Star
All-Star

@Sergius ,

Try below query in your Access Query:

Where users.customproperty20='Manager' or users.manager in (select userkey from users where customproperty20='Manager')


Pandharinath Mahalle(Paddy)
If this reply helps your question, please consider selecting Accept As Solution and hit Kudos 🙂

rushikeshvartak
All-Star
All-Star

Who is manager of another employee ? Is it requestor ?


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

Raghu
All-Star
All-Star

@Sergius  may be  u will achive based on below quey

WHERE users.customproperty20 = 'Manager' OR users.manager IN (SELECT userkey FROM users WHERE customproperty20 = 'Manager')


Thanks,
Raghu
If this reply answered your question, Please Accept As Solution and hit Kudos.