Search Results hazardous_information




Overview

The APPS.EGO_GTIN_HAZMAT_ATTRS_V view is a reporting and integration artifact within Oracle E-Business Suite that consolidates Global Trade Item Number (GTIN) identifiers with hazardous materials (hazmat) attribute data for inventory items. It resides in the APPS schema and is part of the Product Information Management (PIM) / Item Management layer, specifically the attribute framework administered by the EGO (Engineering/Item) schema. In EBS 12.1.1 and 12.2.2, this view serves as a convenient, join-ready projection that returns the hazmat classification attributes an item carries at the master organization level, keyed to both the inventory item and its GTIN cross-reference.

The view is particularly relevant when users search for hazardous_information, because its definition explicitly filters the attribute group named Hazardous_Information from the multi-attribute value tables. Rather than querying the EGO attribute framework directly, consumers can select from this view to obtain dangerous goods data without reconstructing the attribute-group lookup logic.

Underlying Base Objects

The view is defined over the following documented base objects:

Joins link items to their multi-attribute values, to the GTIN cross-reference at the primary UOM, and restrict the result set to the master organization, so only master-level hazmat data is returned.

Key Columns

Common Use Cases and Queries

Typical uses include hazmat compliance reporting, item data extraction for logistics and shipping systems, and integration feeds requiring GTIN-to-dangerous-goods mappings. A representative query follows:

SELECT inventory_item_id,
       organization_id,
       global_trade_item_number,
       dangerous_goods_united_nations_dang_goods_no,
       dangerous_goods_shipping_name,
       class_of_dangerous_code
FROM   apps.ego_gtin_hazmat_attrs_v
WHERE  organization_id = :p_org_id
AND    inventory_item_id = :p_item_id;

Because the view already constrains the master organization and the Hazardous_Information attribute group, consumers avoid duplicating the EGO attribute-group resolution logic and can reliably retrieve hazmat attributes alongside the item's GTIN.