RSA IGL Version: V 7.2.x
Modules: Governance
Product Area: Charts, Single Series - Dynamic (Applied to Application Object Dashboard)
Associated Dashboard: RSA IGL Recipes : Dashboard - Application Summary
Time to apply: ~30 minutes
This chart provides key information about the accounts for a selected application and their status. It is a dynamic chart, that has flexible configuration options, allowing you to decide how you want to show and group the data displayed.
The goal of this chart is to understand if you have any risk, where accounts are still owned by "terminated" / "leaver" users.
The chart can be used by application owners or the admin team to monitor accounts.
This chart will only work when it is applied dynamically to the Application object dashboard.
This chart includes the following key information, you can click the chart legend to show/hide results:
The following value needs to be used when creating the chart, however the value will update dynamically when used within the dashboard.
How to find an Example Target Object ID:
First test this in your query tool (SQLDeveloper, Toad etc..)
(select 'Terminated and Deleted Users' as Information, count(distinct pA.NAME) as Total from avuser.PV_ACCOUNT pA left join avuser.PV_USER_ACCOUNT_MAPPING pUAM on pUAM.Account_id = pA.ID left join avuser.V_USERS pU on pU.ID = pUAM.User_ID where pA.application_id
=:TargetObjectID and pA.deletion_date is null and pU.IS_DELETED = 1 and pU.IS_TERMINATED = 1 union all select 'Active Users' as Information, count(distinct pA.NAME) as Total from avuser.PV_ACCOUNT pA left join avuser.PV_USER_ACCOUNT_MAPPING pUAM on
pUAM.Account_id = pA.ID left join avuser.V_USERS pU on pU.ID = pUAM.User_ID where pA.application_id =:TargetObjectID and pA.deletion_date is null and pU.IS_DELETED = 0 and pU.IS_TERMINATED = 0 union all select 'Terminated Only Users' as Information,
count(distinct pA.NAME) as Total from avuser.PV_ACCOUNT pA left join avuser.PV_USER_ACCOUNT_MAPPING pUAM on pUAM.Account_id = pA.ID left join avuser.V_USERS pU on pU.ID = pUAM.User_ID where pA.application_id =:TargetObjectID and pA.deletion_date is
null and pU.IS_DELETED = 0 and pU.IS_TERMINATED = 1 )
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.