DBA Data[Home] [Help]

APPS.BIS_MV_REFRESH dependencies on FND_FORM_FUNCTIONS

Line 663: l_function_id fnd_form_functions.function_id%type;

659: PROCEDURE updCacheByTopPortlet(
660: P_MVNAME IN VARCHAR2
661: ) IS
662: l_portlet_name bis_obj_dependency.object_name%type;
663: l_function_id fnd_form_functions.function_id%type;
664: CURSOR C_PORTLETS ( P_MVNAME bis_obj_dependency.object_name%type )
665: IS
666:
667: select distinct object_name, function_id

Line 668: from bis_obj_dependency, fnd_form_functions

664: CURSOR C_PORTLETS ( P_MVNAME bis_obj_dependency.object_name%type )
665: IS
666:
667: select distinct object_name, function_id
668: from bis_obj_dependency, fnd_form_functions
669: where depend_object_type = 'MV'
670: and object_type = 'PORTLET'
671: and function_name(+) = depend_object_name
672: and depend_object_name = P_MVNAME;