FND Responsibility Menu Exclusions

Description
Categories: Enginatics
Repository: Github
Responsibility menu exclusions

Download Blitz Report™ – World’s fastest reporting and data upload for Oracle EBS

Contact us to schedule a demo or if you need help with the installation

select
frv.responsibility_name,
fav.application_name application,
xxen_util.meaning(frf.rule_type,'FND_RESP_FUNC_RULE_TYPE',0) type,
decode(frf.rule_type,'F',fffv.user_function_name,fmv.user_menu_name) name,
decode(frf.rule_type,'F',fffv.function_name,fmv.menu_name) system_name,
decode(frf.rule_type,'F',fffv.description,fmv.description) description,
xxen_util.user_name(frf.created_by) created_by,
xxen_util.client_time(frf.creation_date) creation_date,
xxen_util.user_name(frf.last_updated_by) last_updated_by,
xxen_util.client_time(frf.last_update_date) last_update_date
from
fnd_application_vl fav,
fnd_responsibility_vl frv,
fnd_resp_functions frf,
fnd_form_functions_vl fffv,
fnd_menus_vl fmv
where
1=1 and
fav.application_id=frv.application_id and
frv.application_id=frf.application_id and
frv.responsibility_id=frf.responsibility_id and
decode(frf.rule_type,'F',frf.action_id)=fffv.function_id(+) and
decode(frf.rule_type,'M',frf.action_id)=fmv.menu_id(+)
order by
frv.responsibility_name,
type,
name
Parameter Name SQL text Validation
Responsibility Name
upper(frv.responsibility_name) like upper(:responsibility_name)
LOV
Excluded User Function Name
fffv.user_function_name=:user_function_name
LOV
Excluded Function Name
fffv.function_name=:function_name
LOV
Excluded Menu Name
fmv.menu_name=:menu_name
LOV