DBA Data[Home] [Help]

APPS.ORACLEAPPS dependencies on FND_MENU_ENTRIES_VL

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 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: