magritton
6/12/2015 - 1:16 PM

Find all the user's responsibilities in oracle with SQL

Find all the user's responsibilities in oracle with SQL

select fu.user_name, fr.responsibility_name, furg.START_DATE, furg.END_DATE
 from fnd_user_resp_groups_direct furg, fnd_user fu, fnd_responsibility_tl fr
 where fu.user_name = 'xxxxx'
and 
furg.user_id = fu.user_id
 and furg.responsibility_id = fr.responsibility_id;-- and fr.language = userenv('LANG');