Adhoc Roles from backend.
Adhoc Roles in Oracle Applications
Adhoc roles can be created through PL/SQL from database or they can be created from applications using User Management Responsibility. If you use PL/SQL to create roles make sure you give all user names and role names in UPPER case to avoid some problems.
- Script to Create a Adhoc Role
- Script to Add user to existing Adhoc Role
- Script to Remove user from existing Adhoc Role
- Using Adhoc roles in workflow notifications
- Adhoc Roles Tables
DECLARE
lv_role varchar2(100) := 'PHANI_DEMO_ROLE';
lv_role_desc varchar2(100) := ' PHANI_DESC_DEMO_ROLE';
BEGIN
wf_directory.CreateAdHocRole(l v_role,
lv_role_desc,
NULL,
NULL,
'Role Demo for phani users',
'MAILHTML',
'USER1 USER2', --USER NAME SHOULD BE IN CAPS
NULL,
NULL,
'ACTIVE',
NULL);
dbms_output.put_line('Created Role' ||' '||lv_role);
End;
DECLARE
v_role_name varchar2(100);
v_user_name varchar2(100);
BEGIN
v_role_name := 'PHANI_DEMO_ROLE';
v_user_name := 'NAME3';
WF_DIRECTORY.AddUsersToAdHocRo le(v_role_name, v_user_name);
--USER NAMES SHOULD BE in CAPS
END;
DECLARE
v_role_name varchar2(100);
v_user_name varchar2(100);
BEGIN
v_role_name := 'PHANI_DEMO_ROLE';
v_user_name := 'USER3';
WF_DIRECTORY.RemoveUsersFromAd HocRole(v_role_name, v_user_name);
--USER NAMES in CAPS
END;
Navigation: File à Load Roles from Database
Select roles you want to use and then click OK.
Open the notification properties and then navigate to node tab, select performer as the role you just created and loaded from database.
Tables: - WF_ROLES
- WF_USER_ROLES
- WF_LOCAL_ROLES
- WF_USER_ROLE_ASSIGNMENTS
No comments:
Post a Comment