DBA Data[Home] [Help]

APPS.BIS_COMPONENTS_PVT dependencies on ICX_PORTLET_CUSTOMIZATIONS

Line 23: SELECT plug_id FROM icx_portlet_customizations

19: SELECT function_id FROM fnd_form_functions
20: WHERE function_name = p_function_name;
21: */
22: CURSOR c_plug_id IS
23: SELECT plug_id FROM icx_portlet_customizations
24: WHERE reference_path = l_reference_path;
25:
26: BEGIN
27: --nbarik - 10/28/03 - Bug Fix 3212861 - Added p_function_id

Line 48: INSERT INTO icx_portlet_customizations (reference_path, plug_id, user_id, caching_key)

44: IF l_plug_id IS NULL THEN
45: SELECT icx_page_plugs_s.nextval INTO l_plug_id
46: FROM sys.dual;
47:
48: INSERT INTO icx_portlet_customizations (reference_path, plug_id, user_id, caching_key)
49: VALUES (l_reference_path, l_plug_id, -1, '0');
50: END IF;
51:
52: x_plug_id := l_plug_id;