Question

How to create a report of users with security access?

  • 17 May 2022
  • 1 reply
  • 110 views

Userlevel 6
Badge +13

How to create a report of users with security access? I need a report that will show all active users that have access to >Solution Manager>Security objects. I can’t find the views I need to create an SQL statement for a quick report. Can someone help?

Thanks

 


1 reply

Userlevel 5
Badge +15

Hi @arebbeadle

 

Try this:

select * from activity_grant_tab
where activity_name like '%KeystoreAdmin%';

Reply