RSA IGL Version: V 7.2.x
Modules: Governance
Product Area: Tabular Reports - Dynamic (Applied to Review Results Object Dashboard)
Associated Dashboard: https://community.rsa.com/docs/DOC-115123
Time to apply: ~20 minutes
This report provides details on all the reviewers, who still have outstanding items left to be completed.
The goal of this report is to provide clear information on outstanding review activity, with easy to understand metrics.
The report can be used by Review owners or the admin team to better understand the reviewers overall and which ones to potentially focus on.
This report will only work when it is applied dynamically to the Review Results object dashboard.
This report includes various key data points about the users, however you can easily modify the SQL below, if you wanted to include more data about the users. The report is sorted by "Outstanding", so reviewers with the most items to be completed, will be at the top.
If a reviewer has completed all their review items, they are dropped from this list.
The following value needs to be used when creating the report, however the value will update dyncamilly when used within the dashboard.
How to find an Example Target Object ID:
First test this in your query tool (SQLDeveloper, Toad etc..)
(select
pU.First_name || ' ' || pU.Last_name as Reviewer_Name,
pU.User_ID,
pu.email_address as Email,
pU.Department,
pu.Supervisor_id_name as Supervisor_Name,
t1.Total_to_Review as Total,
t1.Completed_Items as Completed,
t1.Outstanding_Items as Outstanding,
round(((t1.Outstanding_Items / t1.Total_to_Review) * 100),0) || ' %' as Percent
from
(
select
Tcov.COVERING_USER_ID,
COUNT(1) as Total_to_Review,
COUNT(1) - COUNT(decode(IS_REVIEWED , 'False', NULL, 1)) AS Outstanding_Items,
COUNT(1) - COUNT(decode(IS_REVIEWED , 'True', NULL, 1)) AS Completed_Items
from avuser.pv_review_component Tcomp
join avuser.pv_review_coverage Tcov
on Tcomp.id = Tcov.REVIEW_COMPONENT_ID
where Tcov.role_type = 'Reviewer'
and review_id=:TargetObjectID
group by REVIEW_ID, COVERING_USER_ID
) t1
Left join avuser.pv_users pU
on pU.id = t1.COVERING_USER_ID
Where Outstanding_Items > 0
order by Outstanding_Items desc
)
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
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.