DBA Data[Home] [Help]

APPS.BIS_CREATE_REQUESTSET dependencies on FND_FORM_FUNCTIONS

Line 4091: from fnd_form_functions

4087:
4088: function form_function_exist(p_object_type in varchar2, p_object_name in varchar2) return varchar2 is
4089: cursor c_report_function is
4090: select 'Y'
4091: from fnd_form_functions
4092: where function_name=p_object_name
4093: and type in ('WWW','JSP');
4094:
4095: ---add WEBPORTLETX for bug 4067976

Line 4098: from fnd_form_functions

4094:
4095: ---add WEBPORTLETX for bug 4067976
4096: cursor c_portlet_function is
4097: select 'Y'
4098: from fnd_form_functions
4099: where function_name=p_object_name
4100: and type in ('WEBPORTLET','WEBPORTLETX');
4101:
4102: cursor c_page_function is

Line 4104: from fnd_form_functions

4100: and type in ('WEBPORTLET','WEBPORTLETX');
4101:
4102: cursor c_page_function is
4103: select 'Y'
4104: from fnd_form_functions
4105: where function_name= bis_impl_dev_pkg.get_function_by_page(p_object_name)
4106: and upper(web_html_call) like '%BIS_COMPONENT_PAGE'||'&'||'AKREGIONAPPLICATIONID=191%';
4107: l_dummy varchar2(1);
4108: begin