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 334: from fnd_form_functions_vl

330: l_user_function_name varchar2(80);
331: l_form_id number;
332:
333: cursor c1 is select type, user_function_name, form_id
334: from fnd_form_functions_vl
335: where function_id = p_function_id;
336: begin
337: if ( p_function_id is null ) then
338: return null;