DBA Data[Home] [Help]

APPS.FND_RUN_FUNCTION dependencies on FND_FORM_FUNCTIONS

Line 33: cursor c_func is select function_id from fnd_form_functions

29: p_resp_appl_id out nocopy number,
30: p_resp_id out nocopy number,
31: p_security_group_id out nocopy number )
32: return boolean is
33: cursor c_func is select function_id from fnd_form_functions
34: where function_name = p_function_name;
35: cursor c_app is select application_id from fnd_application
36: where application_short_name = p_resp_appl;
37: cursor c_resp is select responsibility_id from fnd_responsibility

Line 340: from fnd_form_functions_vl

336: l_user_function_name varchar2(80);
337: l_form_id number;
338:
339: cursor c1 is select type, user_function_name, form_id
340: from fnd_form_functions_vl
341: where function_id = p_function_id;
342: begin
343: if ( p_function_id is null ) then
344: return null;