List Reponsibilities for an user
————————————————————————-
— Author : Jayasankar Gopalakrishnan
————————————————————————-
select frt.RESPONSIBILITY_NAME, fu.user_id,furg.responsibility_id, furg.*
from
fnd_user_resp_groups furg,
FND_RESPONSIBILITY fr,
fnd_responsibility_tl frt,
fnd_user fu
where fu.user_name =upper( ‘&username’)
and fu.user_id = furg.user_id
and furg.responsibility_id = fr.RESPONSIBILITY_ID
and frt.responsibility_id = fr.RESPONSIBILITY_ID
order by 1