DBA Data[Home] [Help]

APPS.PO_EMAIL_GENERATE dependencies on MTL_SYSTEM_ITEMS_VL

Line 1115: from mtl_system_items_vl

1111:
1112: begin
1113: l_mtl_system_items_desc := NULL;
1114: select allow_item_desc_update_flag into l_allow_item_desc_update
1115: from mtl_system_items_vl
1116: where inventory_item_id = l_line_loc.item_id
1117: and organization_id = l_org_id;
1118:
1119: if (l_allow_item_desc_update = 'N') then

Line 1121: from mtl_system_items_vl

1117: and organization_id = l_org_id;
1118:
1119: if (l_allow_item_desc_update = 'N') then
1120: select description into l_mtl_system_items_desc
1121: from mtl_system_items_vl
1122: where inventory_item_id = l_line_loc.item_id
1123: and organization_id = l_org_id;
1124: end if;
1125: exception