Monday, October 23, 2017

Query to get Attached Responsibilities in Oracle Apps for a Given User

SELECT fu.user_name, frt.responsibility_name
  FROM fnd_user fu
      ,fnd_user_resp_groups furg
      ,fnd_responsibility_tl frt
 WHERE fu.user_name = '<<USER NAME>>'
    AND fu.user_id = furg.user_id
    AND furg.responsibility_id = frt.responsibility_id
    AND frt.language =USERENV('LANG')
   ORDER BY frt.responsibility_name

No comments:

Post a Comment

Query to get the Concurrent Program along with Value Set details

SELECT fcpl1.user_concurrent_program_name       ,fdfcuv.end_user_column_name       ,ffvs.flex_value_set_name value_set_name       ,ffvt.appl...