Skip to main content

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

 

Hi @arebbeadle

 

Try this:

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


Reply