Search Results data_change




Overview

APPS.EGO_ITEMS_V is a reporting and integration view in Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 that consolidates master-level item attributes with trade item and GTIN (Global Trade Item Number) data. Its primary purpose is to expose, in a single flattened result set, the information required by the EGO (Product Information Management, or PIM) trade item publication process, including item identifiers, GTIN cross-references, unit of measure, weights, and the trade item descriptor. The view is owned by the APPS schema and is defined over a combination of inventory, master organization, cross-reference, and trade item attribute tables. It is widely used in ETRM/PIM reporting, as a source for GTIN synchronization extracts, and as a basis for downstream publication monitoring queries.

Underlying Base Objects

The view is defined with an inner-join core over MTL_SYSTEM_ITEMS_B_KFV (MSI), MTL_PARAMETERS (MP), and MTL_SYSTEM_ITEMS_B (MSI2). MTL_PARAMETERS determines the master organization, ensuring item attributes are read from the master level (MSI2.ORGANIZATION_ID = MP.MASTER_ORGANIZATION_ID). MTL_CROSS_REFERENCES_B is outer-joined to retrieve GTIN cross-references where the UOM_CODE context is null. EGO_ITEM_GTN_ATTRS_B supplies GTN (Global Trade Number) attributes such as TOP_GTIN, GROSS_WEIGHT, and IS_TRADE_ITEM_A_CONSUMER_UNIT. MTL_UNITS_OF_MEASURE_TL provides the primary UOM description. Two additional objects are referenced in scalar subqueries: MTL_CROSS_REFERENCES_TL (cross-reference description by language) and FND_FLEX_VALUE_SETS with FND_FLEX_VALUES_VL (the TradeItemDescVS value set, used to translate the trade item descriptor code into its meaning). EGO_UCCNET_EVENTS is used in an EXISTS clause to determine publication status. The documented synonym references include EGO_ITEM_GTN_ATTRS_B, EGO_UCCNET_EVENTS, FND_FLEX_VALUE_SETS, MTL_CROSS_REFERENCES_B, MTL_CROSS_REFERENCES_TL, MTL_PARAMETERS, MTL_SYSTEM_ITEMS_B, and MTL_UNITS_OF_MEASURE_TL, all under APPS, with FND_FLEX_VALUES_VL and MTL_SYSTEM_ITEMS_B_KFV exposed as views.

Key Columns

Common Use Cases and Queries

The view is typically used to report the trade item descriptor assigned to an item, to verify GTIN publication readiness, and to produce extracts for data pools. A representative query retrieving descriptor and publication status for a specific item follows:

SELECT inventory_item_id, organization_id, concatenated_segments, gtin, trade_item_descriptor, trade_item_descriptor_desc, publication_status FROM apps.ego_items_v WHERE inventory_item_id = :item_id;

Because the trade item descriptor is resolved via the TradeItemDescVS value set, the view is also useful for valid-value lookups and for auditing items whose descriptor differs from the expected meaning. For publication monitoring, filtering on PUBLICATION_STATUS IS NULL identifies items that have not been successfully published. Where the metadata is silent, note that the view reflects master-organization item attributes; organization-specific overrides are not represented, and the outer joins to cross-references mean an item may appear with null GTIN values.