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

currentAppUi built in variable in VBCS

$global.currentAppUi.id :- The id of the App UI $global.currentAppUi.urlId :-The id of the App UI as shown in the URL $global.currentAppUi.d...