DBA Data[Home] [Help]

APPS.BIS_CREATE_REQUESTSET dependencies on BIS_IMPL_DEV_PKG

Line 3185: l_stmt := 'BEGIN :function_name := bis_impl_dev_pkg.get_function_by_page(:page_name); END;';

3181:
3182: -- bug#3426783.
3183: -- added to strip _OA on the fly, if the page name has been migrated
3184: IF(p_object_type = 'PAGE') THEN
3185: l_stmt := 'BEGIN :function_name := bis_impl_dev_pkg.get_function_by_page(:page_name); END;';
3186: l_cursor_id:=DBMS_SQL.OPEN_CURSOR;
3187: DBMS_SQL.parse(l_cursor_id,l_stmt,DBMS_SQL.V7);
3188: DBMS_SQL.bind_variable(l_cursor_id,'page_name',p_object_name, 300);
3189: DBMS_SQL.bind_variable(l_cursor_id,'function_name',l_func1, 300);

Line 3541: select distinct a.object_type, bis_impl_dev_pkg.get_user_object_name(a.object_type,a.object_name) user_object_name

3537: ---the user should re-generate these request sets
3538: procedure check_unimpl_objects_is_sets(p_request_set_code in varchar2) is
3539:
3540: cursor c_unimpl_obj_in_set is
3541: select distinct a.object_type, bis_impl_dev_pkg.get_user_object_name(a.object_type,a.object_name) user_object_name
3542: from bis_request_set_objects a,
3543: bis_obj_properties b
3544: where a.request_set_name=p_request_set_code
3545: and a.set_app_id=191

Line 4105: where function_name= bis_impl_dev_pkg.get_function_by_page(p_object_name)

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
4109: l_dummy:='N';