0% found this document useful (0 votes)
45 views

Assign Workflow Admin To All Users With Sysadmin Resp (755223.1)

The document discusses how to configure Oracle Workflow so that users can query workflow items they own or any workflow item in the status monitor. By default, users can only query items they own. The document provides steps to assign the Workflow System Administrator Role to allow querying any item, such as assigning a responsibility role or the SYSADMIN role.

Uploaded by

ucis scanner
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
45 views

Assign Workflow Admin To All Users With Sysadmin Resp (755223.1)

The document discusses how to configure Oracle Workflow so that users can query workflow items they own or any workflow item in the status monitor. By default, users can only query items they own. The document provides steps to assign the Workflow System Administrator Role to allow querying any item, such as assigning a responsibility role or the SYSADMIN role.

Uploaded by

ucis scanner
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Copyright (c) 2020, Oracle. All rights reserved. Oracle Confidential.

User is Able to Query Only the Workflow Items They Own in Status Monitor (Doc ID 755223.1)

In this Document

Symptoms
Cause
Solution

APPLIES TO:

Oracle Workflow - Version 11.5.9 to 12.2 [Release 11.5 to 12.2]


Information in this document applies to any platform.

SYMPTOMS

User chooses a responsibility giving access to Status Monitor in administration mode (for instance "Workflow Administrator
Web Applications"), then navigates to the status monitor. One would like to be able to query any workflow item, but cannot,
as field "Workflow Owned By" is pre-filled with current session username, and cannot be changed.

CAUSE

Issue occurs because the user has not been assigned the Workflow System Administrator Role (WF_ADMIN_ROLE). Only users
having been assigned the Workflow System Administrator Role can query any workflow item in the status monitor. Users not
having been assigned the Workflow System Administrator Role can only query the workflow items they own.

SOLUTION

To implement the solution, please execute the following steps:

1. Find the current role who has been assigned the Workflow System Administrator Role:

select rs.text,r.display_name
from wf_resources rs, wf_local_roles r
where rs.name='WF_ADMIN_ROLE'
and rs.text=r.name;

2. If role found above is a responsibility role, then assign that responsibility to the user you want to be able to query any
workflow item in the status monitor.

3. If role found above is "SYSADMIN", then login as SYSADMIN to be able to query any workflow item in the status monitor, or
set the Workflow System Administrator Role to a responsibility assigned to both SYSADMIN and the user you want to be
able to query any workflow item in status monitor.

The Workflow System Administrator Role can be set through responsibility "Workflow Administrator Web Applications", then
"Administration".

Or, one can also set it by updating table WF_RESOURCES. The sample code below will assign the Workflow System
Administrator Role to the "System Administrator" responsibility.

NOTE: Updating Application tables from sqlplus is not supported. Please ensure a current backup is available as needed.

update wf_resources
set text='FND_RESP|SYSADMIN|SYSTEM_ADMINISTRATOR|STANDARD'
where name='WF_ADMIN_ROLE';
commit;

After having run the above SQL, all users having access to "System Administrator" responsibility,
will be able to query any workflow item in the status monitor.

Didn't find what you are looking for?

You might also like