How to add AME role and responsibility to user

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.

DECLARE
   v_usr_name   VARCHAR2 (20) := :USER_NAME;
BEGIN
   BEGIN
      wf_local_synch.PropagateUserRole (
         p_user_name   => v_usr_name,
         p_role_name   => 'UMX|AME_BUS_ANALYST');
      COMMIT;
   END;

   BEGIN
      wf_local_synch.PropagateUserRole (p_user_name   => v_usr_name,
                                        p_role_name   => 'UMX|AME_ADM_VIEWER');
      COMMIT;
   END;

   BEGIN
      wf_local_synch.PropagateUserRole (p_user_name   => v_usr_name,
                                        p_role_name   => 'UMX|AME_APP_ADMIN');
      COMMIT;
   END;

   BEGIN
      wf_local_synch.PropagateUserRole (
         p_user_name   => v_usr_name,
         p_role_name   => 'UMX|AME_BUS_PROCESS_OWNER');
      COMMIT;
   END;

   BEGIN
      wf_local_synch.PropagateUserRole (
         p_user_name   => v_usr_name,
         p_role_name   => 'UMX|AME_TTYPE_ADMIN');
      COMMIT;
   END;
EXCEPTION
   WHEN OTHERS
   THEN
      DBMS_OUTPUT.PUT_LINE ('Error:' || SQLERRM);
END;
/

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.

Related posts: Upload your own post and refer it anywhere anytime:

Leave a Reply