DBA Data[Home] [Help]

APPS.BSC_LAUNCH_PAD_PVT dependencies on DUAL

Line 705: SELECT fnd_menus_s.nextval INTO h_menu_id FROM DUAL;

701:
702: -- Create the menu only if the menu is for BSC
703: IF UPPER(SUBSTR(h_menu_name,1,3)) = 'BSC' THEN
704: -- Get the menu_id
705: SELECT fnd_menus_s.nextval INTO h_menu_id FROM DUAL;
706:
707: -- Get all info about the menu in the source to create it in the target
708: h_menu_type := NULL;
709: h_description := NULL;

Line 801: SELECT fnd_form_functions_s.nextval INTO h_function_id FROM DUAL;

797:
798: -- Create the function if does not exist. We know that it is a BSC function.
799: IF h_function_id = -1 THEN
800: -- Get the function_id
801: SELECT fnd_form_functions_s.nextval INTO h_function_id FROM DUAL;
802:
803: -- Get all info about the function in the source to create it in the target
804: h_web_host_name := NULL;
805: h_web_agent_name := NULL;