DBA Data[Home] [Help]

APPS.ICX_LOGIN dependencies on FND_MENU_ENTRIES

Line 44: from fnd_menu_entries

40: l_entry_sequence number;
41:
42: cursor menuentries is
43: select sub_menu_id
44: from fnd_menu_entries
45: where menu_id = p_sub_menu_id
46: and sub_menu_id is not null
47: order by entry_sequence;
48:

Line 55: fnd_menu_entries b

51: begin
52: select menu_id, entry_sequence
53: into l_menu_id, l_entry_sequence
54: from fnd_form_functions a,
55: fnd_menu_entries b
56: where b.menu_id = p_sub_menu_id
57: and b.function_id = a.function_id
58: and a.function_name = 'ICX_NAVIGATE_PLUG';
59: exception