SELECT distinct
fuser.USER_NAME USER_NAME
, fuser.user_id
, fuser.creation_date
, fuser.last_update_date
, fuser.LAST_LOGON_DATE
, fuser.START_DATE
, fuser.END_DATE
, per.FULL_NAME FULL_NAME
, per.EMPLOYEE_NUMBER EMPLOYEE_NUMBER
, frt.RESPONSIBILITY_NAME RESPONSIBILITY
, TO_CHAR(furg.START_DATE,'DD-MON-YYYY') resp_attched_date
, TO_CHAR(furg.END_DATE,'DD-MON-YYYY') resp_remove_date
FROM
FND_USER fuser
, PER_PEOPLE_F per
, fnd_user_resp_groups_direct furg
, FND_RESPONSIBILITY_TL frt
WHERE
fuser.EMPLOYEE_ID = per.PERSON_ID
AND fuser.USER_ID = furg.USER_ID
AND (to_char(fuser.END_DATE) is null
OR fuser.END_DATE > sysdate)
AND frt.RESPONSIBILITY_ID = furg.RESPONSIBILITY_ID
AND frt.LANGUAGE = 'US'
and fuser.user_name like 'SYSADMIN%'
ORDER BY
fuser.USER_NAME;
Search This Blog
Query To Get All Assigned Responsibilities Of User In Oracle Apps R12
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
comments are welcome