RSA IGL Version: V 7.2.x
Modules: Governance
Product Area: Charts, Single Series (Applied to Home/User Summary Dashboard)
Associated Dashboard:
Time to apply: ~30 minutes
This chart provides key information how many users do/don't have asupervisor listed
The goal of this chart is to understand if there is an issue you need to resolve, with users who don't have any supervisor
The chart can be used by admin's to understand their identity collectors and the risk of users who don't have a supervisor.
This chart displays the total number of users who do or do not have a supervisor listed.
It will ignore the "AveksaAdmin" user (ID = 0) and users who are "leavers" (is_terminated = false)
First test this in your query tool (SQLDeveloper, Toad etc..)
(select
SupervisorStatus,
count(*) as Total
from
(
select
id,
Case When supervisor_id is null then 'No Supervisor' else 'Supervisor' end as SupervisorStatus
from
(
select distinct
id, supervisor_id
from avuser.pv_users where id <> 0 and is_terminated = 'False'
)
)
Group by SupervisorStatus)
Example of the results:
If you get an error at this stage, please test your SQL in a Query tool, like "SQL Developer" or "SQL Squirrel" to ensure it works first.
If it still doesn't work, please share your SQL and a screen shot of the issue below. DO NOT contact RSA Support
There are MANY other "display attributes" you can play with on this screen, so please update and make changes as you see fit.
Dont forget:
Please login, then "Like"
and "Actions/Follow" this page (Top Right), so as to receive updates and be notified if we modify/change items found here, in future.