DBA Data[Home] [Help]

APPS.PO_EMAIL_GENERATE dependencies on MTL_SYSTEM_ITEMS_VL

Line 966: from mtl_system_items_vl

962:
963: begin
964: l_mtl_system_items_desc := NULL;
965: select allow_item_desc_update_flag into l_allow_item_desc_update
966: from mtl_system_items_vl
967: where inventory_item_id = l_line_loc.item_id
968: and organization_id = l_org_id;
969:
970: if (l_allow_item_desc_update = 'N') then

Line 972: from mtl_system_items_vl

968: and organization_id = l_org_id;
969:
970: if (l_allow_item_desc_update = 'N') then
971: select description into l_mtl_system_items_desc
972: from mtl_system_items_vl
973: where inventory_item_id = l_line_loc.item_id
974: and organization_id = l_org_id;
975: end if;
976: exception