Oracle - R12 View Concurrent Request Output by Others
Oracle - R12 View Concurrent Request Output by Others
Oracle - R12 View Concurrent Request Output by Others
R11
R12
Unfortunately in R12 profile 'Concurrent: Report Access Level' does not work, it is a bit more complex
process to achieve this
In R12 this was replaced by Role Based Access Control. The UMX Role Based Access Control (RBAC) is to
control who can view request output files.
Give Name- WVU View Requests by Other Users, Code – WVU_VIEW_REQUEST, Description – WVU
View Requests by other Users from the same responsibility
For Predicate
Enter below code
&TABLE_ALIAS.request_id in(
select cr.request_id
from apps.fnd_concurrent_requests cr, apps.fnd_concurrent_programs cp
where cr.concurrent_program_id = cp.concurrent_program_id
and cr.program_application_id = cp.application_id)
'Apply' it and it will give the Confirmation with Code you have entered.
Display Name - WVU View Requests to Other Users, Description - WVU View Requests submitted by Other
Users
'Apply'
Provide Name – WVU View Request Grant, Description – WVU View Request Grant
Data Security -> Object -> 'Concurrent Requests'
Click on 'Next'
Data Context Type -> 'Instance Set'
Instance Set -> WVU View Requests by Other Users
Click 'Next'
Set -> Set -> 'Request Operations'
Known Issue
Sometimes it will give below Error. Just try 3-4 times, it should be fine.
Sorry didn't dig much into it to find the exact reason behind it.
Error Page
You have encountered an unexpected error. Please contact the System Administrator for assistance.
Click 'Update'
* Now assigned user can see the output of other user's request from the responsibility from which that
request had been launched.
>> You can also use the below script to assign the grant to a user.
begin
wf_local_synch.PropagateUserRole(p_user_name => 'USERNAME'
,p_role_name => ‘UMX_WVU_VIEW_REQUEST ');
commit;
End;