Click HERE to see how Saviynt Intelligence is transforming the industry. |
08/05/2024 06:11 AM
Hello,
When making a delegation we are able to filter the list for whom the user can setup delegate for. it works well.
What i need is how to filter the list of the Delegate User (image below).
I want to hide from the list the admin and the systemadmin and the other saviyntsupportagent.
Anyone can help please?
Regards,
Ray
Solved! Go to Solution.
08/05/2024 06:33 AM - edited 08/05/2024 06:34 AM
@ray try below may it work
id=XXX=admin/1 value u can replace filter value username still visiable try userkey update sav role ,login private mode check
select new map(a.id as id) from Users a where a.id = ${users?.id} and a.id not in ('xxx')
08/05/2024 08:53 AM
Hello i used this query it worked !
user. username LIKE 'EX%' OR user. username LIKE 'CD%' OR user. username LIKE 'S0%' OR user.username LIKE 'PE%' OR user. username LIKE 'CW%' OR user. username like 'CT%' OR user.username like 'CC%'
Regards,
Ray