Search Results default_shipping_org




Overview

XNC_PRODUCTS_V is a database view defined in the Oracle E-Business Suite module XNC — Sales for Communications, which is documented as obsolete in Oracle EBS 12.1.1 and 12.2.2. The view exists to display products, specifically presenting a flattened, presentation-ready list of inventory items enriched with descriptive lookup meanings and service coverage information. It is intended to be consumed by reporting and integration logic within the Sales for Communications product family, where product catalogs must be rendered for quoting, ordering, and subscription capture scenarios.

The ETRM metadata records that this view is not implemented in this database, meaning the object is documented for reference but is not deployed or validated in the assessed environment. Because the underlying columns derive from inventory item master data, implementations should always confirm the presence of the view before referencing it in custom code or reports.

Underlying Base Objects

The view text is defined over four objects joined in its first query block and reselected in a UNION ALL branch:

Although the ETRM "referenced base objects" section lists none documented, the view text explicitly establishes these dependencies. The second UNION ALL branch repeats the MTL_SYSTEM_ITEMS_KFV and MFG_LOOKUPS joins while hard-coding empty strings for item type meaning and code.

Key Columns

Common Use Cases and Queries

Typical consumption centers on identifying orderable products. A query filtering on the searched attribute might read:

  • SELECT organization_id, inventory_item_id, item_name, item_description, customer_order_flag FROM xnc_products_v WHERE customer_order_flag = 'Y';
  • SELECT item_name, bom_item_type_meaning, coverage_schedule_id FROM xnc_products_v WHERE comms_activation_reqd_flag = 'Y';
  • SELECT organization_id, COUNT(*) FROM xnc_products_v GROUP BY organization_id;

Because the view is obsolete and flagged as not implemented, developers should validate its existence against the target database and consider MTL_SYSTEM_ITEMS_B or MTL_SYSTEM_ITEMS_KFV directly for supported item-attribute reporting.