To make sure that the user able to view the Workflows owned by everyone is to identify which responsibility holds the Workflow System Administrator responsibilities and assign to themselves the corresponding responsibility.
Following query identifies who has been asssigned 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;
If role found above is a responsibility role, then assign that responsibility to the user to be able to query any workflow item in the Status Monitor or update the Workflow System Administrator to the one found above as displayed below,
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiF4GsXl3eGlspbImGd7ZP9xBcJa7xKwswgjU8hWAIjkQExhpiQaT9cF9PX0wbPImZe62pE3rOICPunh2ZWogMECG-eGGeSde2LDub7ynDbEK6UQ0FY4h0sRNYsJ4x2Nd2tPUyqXyUoKF4/s320/WF+Admin.bmp)
Also you can set by updating the table WF_RESOURCES as below, assigning the Workflow System Administrator Role to the 'System Administrator' responsibility,
UPDATE wf_resources
SET text='FND_RESP|SYSADMIN|SYSTEM_ADMINISTRATOR|STANDARD'
WHERE name='WF_ADMIN_ROLE';
COMMIT;
Print This Post
No comments:
Post a Comment