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 make responsibilities as read only in oracle apps EBS R12 Using Custom.Pll Or Creating a read only Responsibility in oracle apps EBS R12 Using Custom.Pll

  How to make responsibilities as read only in oracle apps EBS R12 Using Custom.Pll Or Creating a read only Responsibility in oracle apps ...