Monday, 2 December 2019

List of Menus Excluded from a given Responsibility. How to fetch Menu name from the given Responsibility or How Many Menu Attached to the Respective Responsibility. How to find the Menu Name or User Menu Name from the given Responsibility in oracle apps


  • List of Menus Excluded from a given Responsibility.
  • How to fetch Menu name from the given Responsibility or How Many Menu Attached to the Respective Responsibility.
  •  How to find the Menu Name or User Menu Name from the given Responsibility in Oracle apps


SELECT frv.responsibility_name,
       fmv.user_menu_name
  FROM fnd_resp_functions frf,
       fnd_menus_vl fmv,
       fnd_responsibility_vl frv
 WHERE frf.rule_type = 'M'
   AND frf.action_id = fmv.menu_id
   AND frf.responsibility_id = frv.responsibility_id
   AND frv.responsibility_name = '&resp_name';

No comments:

Post a Comment

Delete Organization Classification and Organization Using API when BG - Business Group Setup

  Oracle HRMS – Delete Organization Classification and Organization Using API 📘 Overview In Oracle HRMS, each organization is classified ...