DBA Data[Home] [Help]

APPS.JTF_TASK_UTL dependencies on FND_FORM_FUNCTIONS

Line 3240: FROM fnd_form_functions fff, fnd_menu_entries fme

3236: -- check to see if the user has the privilege when private flag is set to 'N'
3237: IF l_private_flag = jtf_task_utl.g_no_char or l_private_flag is null
3238: THEN
3239: SELECT function_name into l_privilege
3240: FROM fnd_form_functions fff, fnd_menu_entries fme
3241: WHERE fff.function_id = fme.function_id
3242: AND fme.menu_id = (select fm.menu_id from fnd_menus fm, fnd_grants fg
3243: where fm.menu_id = fg.menu_id
3244: and fg.instance_pk1_value = l_owner_id

Line 3335: FROM fnd_form_functions fff

3331: rec_assignee_or_owner c_assignee_or_owner%ROWTYPE;
3332:
3333: CURSOR c_grant (pc_pk1_value VARCHAR2, pc_pk2_value VARCHAR2, pc_grantee_key VARCHAR2) IS
3334: SELECT function_name
3335: FROM fnd_form_functions fff
3336: , fnd_menu_entries fme
3337: WHERE fff.function_id = fme.function_id
3338: AND fme.menu_id = (SELECT fm.menu_id
3339: FROM fnd_menus fm

Line 3780: from fnd_form_functions

3776: as l_jsp_name varchar2(200);
3777: begin
3778: if p_web_function_name is not null then
3779: select web_html_call into l_jsp_name
3780: from fnd_form_functions
3781: where function_name = p_web_function_name ;
3782:
3783: return l_jsp_name ;
3784: else