Local roles are not picked up by Role Review
3 years ago
Originally Published: 2018-12-15
Article Number
000040281
Applies To
RSA Product Set: Identity Governance and Lifecycle
RSA Product/Service Type: Enterprise Software
RSA Version/Condition: 7.1.0
Issue
The current view (V_ROLES_TO_APPS) used in the Role Review is not picking up the Local roles, hence when you run the Role Review your roles (which are local and not collected) are not being returned in the result. 
Cause
Local Roles were not included in the scope of V_ROLE_TO_APPS view.
Resolution
Engineering has applied the fix on RSA Identity Governance & Lifecycle  v7.1.0 P06 and  v7.1.1.
Workaround
As a workaround, 
1. Open your SQL Developer and then open a blank worksheet 

2. Go to the Views, locate and open V_ROLES_TO_APPS ... 

3. Click the SQL tab of V_ROLES_TO_APPS, then copy the entire text to the blank worksheet, remove the semicolon (;) at the end of the text and then add the below: 

UNION ALL 
select distinct role_id, application_id from t_av_roledefinitions where deletion_date IS NULL; 


4. Finally, click 'Execute' icon on the worksheet to compile the change and you should see the below message: 

View "AVUSER"."V_ROLES_TO_APPS" created. 

5. Test Role review and verify that the local roles are included in the role review items.