DBA Data[Home] [Help]

APPS.ORACLEAPPS dependencies on FND_MENU_ENTRIES

Line 1485: fnd_menu_entries_vl b

1481: b.prompt,
1482: b.description,
1483: c.web_icon
1484: from fnd_form_functions c,
1485: fnd_menu_entries_vl b
1486: where b.menu_id = c_menu_id
1487: and c.function_id(+) = b.function_id
1488: and nvl(c.type,'WWW') in ('WWW','WWK', 'SERVLET','JSP', 'INTEROPJSP')
1489: order by b.entry_sequence;

Line 1625: from fnd_menu_entries

1621: -- If only one entry with menu and function custom menu handler
1622:
1623: select count(1)
1624: into l_count
1625: from fnd_menu_entries
1626: where menu_id = c_menu_id
1627: and function_id is not null
1628: and sub_menu_id is not null;
1629:

Line 1634: from fnd_menu_entries

1630: if l_count = 1
1631: then
1632: select function_id
1633: into l_function_id
1634: from fnd_menu_entries
1635: where menu_id = c_menu_id
1636: and function_id is not null
1637: and sub_menu_id is not null;
1638:

Line 1903: fnd_menu_entries_vl a

1899: a.prompt,
1900: a.description,
1901: b.web_icon
1902: from fnd_form_functions b,
1903: fnd_menu_entries_vl a
1904: where a.menu_id = l_menu_id
1905: and a.function_id = b.function_id(+)
1906: order by a.entry_sequence;
1907:

Line 1974: from fnd_menu_entries_vl

1970: else
1971: -- get the user menu name for the given menu id
1972: select PROMPT, DESCRIPTION
1973: into l_menu_name, l_menu_description
1974: from fnd_menu_entries_vl
1975: where MENU_ID = l_menuItems(i-1).menuId
1976: and SUB_MENU_ID = l_menuItems(i).menuId;
1977: end if;
1978: