DBA Data[Home] [Help]

APPS.IRC_UTILITIES_PKG dependencies on FND_MENU_ENTRIES

Line 57: from fnd_menu_entries fe

53: ,p_function out nocopy varchar2) is
54: --
55: cursor csr_get_function_id is
56: select fe.function_id
57: from fnd_menu_entries fe
58: where fe.function_id is not null
59: start with fe.menu_id=
60: (select resp.menu_id from fnd_responsibility resp
61: where resp.responsibility_id=p_responsibility_id

Line 72: l_function_id fnd_menu_entries.function_id%type;

68: select fff.function_name
69: from fnd_form_functions fff
70: where fff.function_id=p_function_id;
71: --
72: l_function_id fnd_menu_entries.function_id%type;
73: l_function_name fnd_form_functions.function_name%type;
74: --
75: begin
76: open csr_get_function_id;