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 an email address 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 email.
The chart can be used by admin's to understand their identity collectors and the risk of users who don't have an email, not getting contacted for various processes, e.g.. a new review, or an approval notification.
This chart displays the total number of users who do or do not have an email address listed.
First test this in your query tool (SQLDeveloper, Toad etc..)
(select
EmailStatus,
count(*) as Total
from
(
select
id,
Case When email_address is null then 'No Email' else 'Has Email' end as EmailStatus
from
(
select distinct
id, email_address
from avuser.pv_users where id <> 0 and is_terminated = 'False'
)
)
Group by EmailStatus)
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.