Showing posts with label User Management. Show all posts
Showing posts with label User Management. Show all posts

Sunday, November 27, 2016

API to Assign Roles - Assigned via User Management using SYSADMIN

DECLARE
   CURSOR c1
   IS
      SELECT *
        FROM wf_roles
       WHERE display_name like 'Approvals%'
       and parent_orig_system = 'UMX';

   l_user_name   VARCHAR2 (100) := 'BIJOY';
BEGIN
   FOR i IN c1
   LOOP
      BEGIN
         wf_local_synch.propagateuserrole (p_user_name   => l_user_name,
                                           p_role_name   => i.name);
         COMMIT;
         DBMS_OUTPUT.put_line (
            i.display_name || ' has been assigned to ' || l_user_name);
      EXCEPTION
         WHEN OTHERS
         THEN
            DBMS_OUTPUT.put_line (
               i.display_name || '--  Failure --> ' || SQLERRM);
      END;
   END LOOP;

END;

Saturday, August 6, 2016

How to Grant Access to User Management to Local Users

Step 1: Navigate to System Administrator -> User Management -> Search for the User --> Update



Step 2: Assign Roles
 





Step 3: Search for the Following Roles to Grant Access to “User Management” -> Search for the Roles -> Click on Apply

Attach the Following Roles
1                  1)     System Administrator
2                  2)     Customer Administrator
 




Reference Note ID:

UMX Error: 'There are no functions available for this responsibility' And/Or 'There are no valid navigations for this responsibility' when Accessing 'User Management' Responsibility. (Doc ID 734280.1)