DBA Data[Home] [Help]

APPS.AMW_LOAD_RC_DATA dependencies on FND_FORM_FUNCTIONS

Line 58: FROM fnd_responsibility r, fnd_compiled_menu_functions m, fnd_form_functions f

54: FUNCTION Has_Import_Privilege RETURN Boolean
55: IS
56: CURSOR c_func_exists IS
57: SELECT 'Y'
58: FROM fnd_responsibility r, fnd_compiled_menu_functions m, fnd_form_functions f
59: WHERE r.responsibility_id = fnd_global.resp_id
60: AND r.application_id=fnd_global.resp_appl_id
61: AND r.menu_id = m.menu_id
62: AND m.function_id = f.function_id

Line 67: FROM fnd_resp_functions rf, fnd_form_functions f

63: AND f.function_name = v_import_func;
64:
65: CURSOR c_func_excluded IS
66: SELECT 'Y'
67: FROM fnd_resp_functions rf, fnd_form_functions f
68: WHERE rf.application_id = fnd_global.resp_appl_id
69: AND rf.responsibility_id = fnd_global.resp_id
70: AND rf.rule_type = 'F'
71: AND rf.action_id = f.function_id