How to add AME role and responsibility to user
•By admin
How to add AME role and responsibility to user in oracle apps
Add AME responsibility
AME setup in oracle apps r12
AME workflow in oracle apps
approval management engine in oracle apps r12
AME setup in oracle apps
AME responsibility role attached to user
how do I add roles to AME
there are no valid navigation AME Error
oracle add ame responsibility to user api
Step 1: Add user Role
Use below script to add AME related roles to your user.
SQL Querysql
1DECLARE
2 v_usr_name VARCHAR2 (20) := :USER_NAME;
3BEGIN
4 BEGIN
5 wf_local_synch.PropagateUserRole (
6 p_user_name => v_usr_name,
7 p_role_name => 'UMX|AME_BUS_ANALYST');
8 COMMIT;
9 END;
10
11 BEGIN
12 wf_local_synch.PropagateUserRole (p_user_name => v_usr_name,
13 p_role_name => 'UMX|AME_ADM_VIEWER');
14 COMMIT;
15 END;
16
17 BEGIN
18 wf_local_synch.PropagateUserRole (p_user_name => v_usr_name,
19 p_role_name => 'UMX|AME_APP_ADMIN');
20 COMMIT;
21 END;
22
23 BEGIN
24 wf_local_synch.PropagateUserRole (
25 p_user_name => v_usr_name,
26 p_role_name => 'UMX|AME_BUS_PROCESS_OWNER');
27 COMMIT;
28 END;
29
30 BEGIN
31 wf_local_synch.PropagateUserRole (
32 p_user_name => v_usr_name,
33 p_role_name => 'UMX|AME_TTYPE_ADMIN');
34 COMMIT;
35 END;
36EXCEPTION
37 WHEN OTHERS
38 THEN
39 DBMS_OUTPUT.PUT_LINE ('Error:' || SQLERRM);
40END;
41/The above script adds the below roles to your user.
UMX|AME_ADM_VIEWER
UMX|AME_APP_ADMIN
UMX|AME_BUS_ANALYST
UMX|AME_BUS_PROCESS_OWNER
UMX|AME_TTYPE_ADMIN
Step 2: Create Grants
1. Navigate to Functional Administrator->Security->Grants and click on Create Grants button.
2. Create a grant with the following information:
Name
Grantee Type = ALL User
Object = AME Transaction Types
(You can also set Grantee Type as Specific User and set the user name as Grantee)
3. Click Next to define the object parameters and Select Set as AME Calling Applications
Verify if you are able to access the AME responsibility and transaction types.