Search Results cln_itemmst_itemheader_v
Overview
The CLN_ITEMMST_ITEMHEADER_V view belongs to the CLN – Supply Chain Trading Connector for RosettaNet product within Oracle E-Business Suite 12.1.1 and 12.2.2. It is owned by the APPS schema and its documented purpose is to supply the header section of the Sync Item XML message exchanged in RosettaNet Partner Interface Process (PIP) transactions. The view consolidates item master definition data with revision data, customer-specific cross references, and hazard classification so that a single query can populate the outbound Sync Item payload. Because RosettaNet messaging requires a consistent, partner-aware representation of an item, the view filters records to service-disabled, inventory-enabled, and customer-orderable items, and constrains the customer cross-reference to the trading partner account returned by CLN_SYNCITEM_PKG.GET_CUST_ACCT_ID. The optional join to MTL_ITEM_REVISIONS, plus the correlated subquery selecting MAX(REVISION), means one row is returned per item exposing only the latest revision. A profile-driven filter, CLN_ITEM_SEND_CUST_XREF_ONLY, allows implementations to restrict output to items that carry a customer item number. Typical users are integration developers, RosettaNet/B2B administrators, and report authors needing the same item header projection used by the connector.
Underlying Base Objects
The documented base objects are MTL_SYSTEM_ITEMS_VL, MTL_CUSTOMER_ITEM_XREFS_V, MTL_ITEM_REVISIONS (synonym), PO_HAZARD_CLASSES_TL (synonym), and the packages CLN_SYNCITEM_PKG, FND_PROFILE, and ARP_ADDR_PKG. MTL_SYSTEM_ITEMS_VL is the primary driver, supplying item attributes and description. MTL_CUSTOMER_ITEM_XREFS_V is outer-joined on INVENTORY_ITEM_ID and constrained to the ordering customer. MTL_ITEM_REVISIONS is outer-joined on both INVENTORY_ITEM_ID and ORGANIZATION_ID, with the revision column further filtered by the maximum-revision subquery. PO_HAZARD_CLASSES_TL is outer-joined by HAZARD_CLASS_ID and restricted to the session language via USERENV('LANG'). CLN_SYNCITEM_PKG provides the current customer account ID used in the MTL_CUSTOMER_ITEM_XREFS_V predicate, while FND_PROFILE supplies the CLN_ITEM_SEND_CUST_XREF_ONLY value that governs whether a customer item number is mandatory in the result set.
Key Columns
- INVENTORY_ITEM_ID, ORGANIZATION_ID – item and inventory organization keys.
- CONCATENATED_SEGMENTS – flexfield-concatenated item identifier.
- ITEM_DESCRIPTION – alias for MSIB.DESCRIPTION.
- REVISION, EFFECTIVITY_DATE – latest revision and its effective date from MTL_ITEM_REVISIONS.
- CUSTOMER_ITEM_NUMBER, CUSTOMER_ID – partner-specific cross-reference data.
- HAZARD_CLASS – translated hazard class description.
- PRIMARY_UOM_CODE, ITEM_TYPE, BOM_ITEM_TYPE, INVENTORY_ITEM_STATUS_CODE – core item classification attributes.
- UNIT_WEIGHT, UNIT_VOLUME, UNIT_LENGTH, UNIT_WIDTH, UNIT_HEIGHT with their UOM codes – physical/dimensional attributes.
- MINIMUM_ORDER_QUANTITY, CUMULATIVE_TOTAL_LEAD_TIME, PLANNING_TIME_FENCE_DAYS, SAFETY_STOCK_BUCKET_DAYS – planning attributes.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 – descriptive flexfield values.
Common Use Cases and Queries
The primary use case is generating the Sync Item header for RosettaNet outbound processing and for validating what the connector will publish. A simple query returns the latest revision of each eligible item:
SELECT inventory_item_id, organization_id, concatenated_segments, item_description, revision, effectivity_date, customer_item_number FROM cln_itemmst_itemheader_v WHERE organization_id = :org_id;SELECT concatenated_segments, revision, effectivity_date, unit_weight, weight_uom_code FROM cln_itemmst_itemheader_v WHERE inventory_item_id = :item_id;SELECT customer_id, customer_item_number, concatenated_segments FROM cln_itemmst_itemheader_v WHERE customer_item_number IS NOT NULL;
Because the view already enforces the latest-revision logic and the partner cross-reference constraint, developers should not re-apply revision filtering, though adding ORGANIZATION_ID or INVENTORY_ITEM_ID predicates preserves performance. The view is read-only and should be treated as an integration contract when the CLN module is implemented.
-
View: CLN_ITEMMST_ITEMHEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_ITEMMST_ITEMHEADER_V, object_name:CLN_ITEMMST_ITEMHEADER_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View for the Header section of the Sync Item XML message , implementation_dba_data: APPS.CLN_ITEMMST_ITEMHEADER_V ,
-
View: CLN_ITEMMST_ITEMHEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_ITEMMST_ITEMHEADER_V, object_name:CLN_ITEMMST_ITEMHEADER_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View for the Header section of the Sync Item XML message , implementation_dba_data: APPS.CLN_ITEMMST_ITEMHEADER_V ,
-
PACKAGE: APPS.ARP_ADDR_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:ARP_ADDR_PKG, status:VALID,
-
PACKAGE: APPS.CLN_SYNCITEM_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:CLN_SYNCITEM_PKG, status:VALID,
-
PACKAGE: APPS.CLN_SYNCITEM_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:CLN_SYNCITEM_PKG, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE: APPS.ARP_ADDR_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:ARP_ADDR_PKG, status:VALID,
-
SYNONYM: APPS.PO_HAZARD_CLASSES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_HAZARD_CLASSES_TL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.CLN_SYNCITEM_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CLN_SYNCITEM_PKG, status:VALID,
-
SYNONYM: APPS.PO_HAZARD_CLASSES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_HAZARD_CLASSES_TL, status:VALID,
-
PACKAGE BODY: APPS.CLN_SYNCITEM_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CLN_SYNCITEM_PKG, status:VALID,
-
VIEW: APPS.CLN_ITEMMST_ITEMHEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_ITEMMST_ITEMHEADER_V, object_name:CLN_ITEMMST_ITEMHEADER_V, status:VALID,
-
VIEW: APPS.MTL_CUSTOMER_ITEM_XREFS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CUSTOMER_ITEM_XREFS_V, object_name:MTL_CUSTOMER_ITEM_XREFS_V, status:VALID,
-
VIEW: APPS.MTL_CUSTOMER_ITEM_XREFS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CUSTOMER_ITEM_XREFS_V, object_name:MTL_CUSTOMER_ITEM_XREFS_V, status:VALID,
-
VIEW: APPS.CLN_ITEMMST_ITEMHEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_ITEMMST_ITEMHEADER_V, object_name:CLN_ITEMMST_ITEMHEADER_V, status:VALID,
-
SYNONYM: APPS.MTL_ITEM_REVISIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_REVISIONS, status:VALID,
-
SYNONYM: APPS.MTL_ITEM_REVISIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_REVISIONS, status:VALID,
-
APPS.CLN_SYNCITEM_PKG SQL Statements
12.2.2
-
APPS.CLN_SYNCITEM_PKG SQL Statements
12.1.1
-
APPS.CLN_SYNCITEM_PKG dependencies on CLN_ITEMMST_ITEMHEADER_V
12.2.2
-
APPS.CLN_SYNCITEM_PKG dependencies on CLN_ITEMMST_ITEMHEADER_V
12.1.1
-
eTRM - CLN Tables and Views
12.1.1
description: M4R 7B1 Message staging table ,
-
eTRM - CLN Tables and Views
12.2.2
description: M4R 7B1 Message staging table ,
-
VIEW: APPS.MTL_SYSTEM_ITEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID,
-
VIEW: APPS.MTL_SYSTEM_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID,
-
PACKAGE BODY: APPS.CLN_SYNCITEM_PKG
12.2.2
-
PACKAGE BODY: APPS.CLN_SYNCITEM_PKG
12.1.1
-
eTRM - CLN Tables and Views
12.1.1
description: M4R 7B1 Message staging table ,
-
eTRM - CLN Tables and Views
12.2.2
description: M4R 7B1 Message staging table ,
-
eTRM - INV Tables and Views
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: APPS.FND_PROFILE
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_PROFILE, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.FND_PROFILE
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_PROFILE, status:VALID,
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2