select fu.user_name,
ppf.FULL_NAME,
fr.RESPONSIBILITY_NAME,
fur.START_DATE,
fur.END_DATE,
fcp.CONCURRENT_PROGRAM_NAME,
fcp.USER_CONCURRENT_PROGRAM_NAME
from fnd_user fu,
per_people_f ppf,
fnd_user_resp_groups_all fur,
fnd_responsibility_vl fr,
fnd_request_groups frg,
fnd_request_group_units frgu,
fnd_concurrent_programs_vl fcp
where fu.user_id = fur.user_id
and fu.employee_id = ppf.PERSON_ID
and ppf.EFFECTIVE_END_DATE > sysdate
and fur.RESPONSIBILITY_ID = fr.RESPONSIBILITY_ID
and fr.REQUEST_GROUP_ID = frg.request_group_id
and frgu.request_group_id = frg.request_group_id
and frgu.request_unit_id = fcp.CONCURRENT_PROGRAM_ID
and fu.user_name = '104267'
order by 1, 2, 3, 6;