DBA Data[Home] [Help]

APPS.AMW_CONTROLS_PAGE_PKG dependencies on FND_FORM_FUNCTIONS_VL

Line 283: from fnd_form_functions_vl

279: **/
280: if(p_application_id is not null)then
281: select user_function_name
282: into l_control_source_name
283: from fnd_form_functions_vl
284: --where to_char(function_id) = p_control_source_id
285: where to_char(function_id) = l_control_source_id
286: and application_id = p_application_id;
287: else

Line 290: from fnd_form_functions_vl

286: and application_id = p_application_id;
287: else
288: select user_function_name
289: into l_control_source_name
290: from fnd_form_functions_vl
291: --where to_char(function_id) = p_control_source_id
292: where to_char(function_id) = l_control_source_id
293: and application_id is null;
294: end if;