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

How to change Employee Number Generation from Manual to Automatic in Oracle HRMS (When attempting to apply for a job in iRecruitment)

When attempting to apply for a job in iRecruitment, the following error occurs: ERROR: You must enter an Application Number. Solution: How t...