Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
Comments
-
HI, Use this code to get the Person Number and Roles Mapped to the User. SELECT DISTINCT EMPL.PERSON_NUMBER, PRD.ROLE_NAME FROM PER_USER_ROLES UR, PER_USERS PU, PER_ALL_PEOPLE_F EMPL, PER_ROLES_DN_VL PRD WHERE PU.USER_ID = UR.USER_ID AND PU.PERSON_ID = EMPL.PERSON_ID AND UR.ROLE_ID = PRD.ROLE_ID Thanks & Regards, Surendar…