Search Results customer_item
Overview
MSC_X_ITEMS_LOV_V is a database view owned by the APPS schema within the Oracle E-Business Suite environment (documented for 12.1.1 and 12.2.2). It belongs to the MSC product family, Advanced Supply Chain Planning, and its status is VALID in the ETRM repository. The view is designed to serve as a List of Values (LOV) source, presenting a simplified, presentation-oriented projection of item data held in the MSC_ITEMS synonym. Rather than exposing the full planning item master, it flattens the record into a stable set of columns suitable for value-list pickers, concurrent report parameters, and lightweight integration queries.
The view is notable for the presence of dedicated attribute columns — CHANNEL_MASTER_ITEM, CUSTOMER_ITEM, and SUPPLIER_ITEM — that are exposed as part of the column list. In the documented view text these three columns are returned as literal NULL values, so the LOV effectively behaves as a single unified item list covering the standard item definition, while preserving the column signature that downstream consumers may reference.
Underlying Base Objects
The documented metadata records a single referenced base object: MSC_ITEMS, which is present in the environment as a SYNONYM. The view text confirms that all returned data originate from MSC_ITEMS, aliased as CM in the defining query. Consequently, the view is a relatively thin wrapper: it performs no joins, unions, or aggregations in the documented definition. Any filtering, security, or organizational scoping applied by the planning item master is inherited directly, and the view adds only column aliasing plus the three NULL placeholder expressions that shape the LOV interface. Because the base is a synonym rather than a physical table, the ultimate source object is resolved through the APPS synonym chain at runtime.
Key Columns
- INVENTORY_ITEM_ID — the surrogate primary key of the item, mapped from CM.INVENTORY_ITEM_ID; the value normally returned by an LOV hidden key.
- ITEM_NAME — the user-facing item identifier, mapped from CM.ITEM_NAME; this is the descriptive value displayed to users in the list of values.
- CHANNEL_MASTER_ITEM — exposed as NULL; a reserved placeholder for channel-master item associations.
- CUSTOMER_ITEM — exposed as NULL; a placeholder aligned to customer-specific item numbering, relevant to the "customer_item" search context.
- SUPPLIER_ITEM — exposed as NULL; a placeholder for supplier item references.
- DESCRIPTION — the item description, mapped from CM.DESCRIPTION, used for additional context in pickers and reports.
- CREATION_DATE, CREATED_BY, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the standard Oracle EBS audit columns carried through from MSC_ITEMS for traceability.
Common Use Cases and Queries
The primary use case is driving LOV pickers for planning and supply chain forms and reports, where the developer needs an item identifier plus a display name and description without the overhead of the full planning item entity. A typical selection returns the key, name, and description:
SELECT INVENTORY_ITEM_ID, ITEM_NAME FROM APPS.MSC_X_ITEMS_LOV_V WHERE UPPER(ITEM_NAME) LIKE :p_name ORDER BY ITEM_NAME;SELECT INVENTORY_ITEM_ID, ITEM_NAME, DESCRIPTION FROM APPS.MSC_X_ITEMS_LOV_V WHERE INVENTORY_ITEM_ID = :p_item_id;
Because CUSTOMER_ITEM, SUPPLIER_ITEM, and CHANNEL_MASTER_ITEM resolve to NULL, queries that filter on those columns will return no rows; consumers must join to the appropriate customer- or supplier-item source tables to obtain those values. Date-bounded extracts and incremental integration feeds can use the audit columns:
SELECT INVENTORY_ITEM_ID, ITEM_NAME, LAST_UPDATE_DATE FROM APPS.MSC_X_ITEMS_LOV_V WHERE LAST_UPDATE_DATE >= :p_since;
In all cases the view should be accessed through the APPS synonym with appropriate grants, and its simplicity makes it a reliable, low-cost source for item value lists across the MSC module.
-
View: MSC_X_ITEMS_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_X_ITEMS_LOV_V, object_name:MSC_X_ITEMS_LOV_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_X_ITEMS_LOV_V ,
-
View: MSC_X_ITEMS_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_X_ITEMS_LOV_V, object_name:MSC_X_ITEMS_LOV_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_X_ITEMS_LOV_V ,
-
VIEW: APPS.MSC_X_ITEMS_LOV_V
12.1.1
-
VIEW: APPS.MSC_X_ITEMS_LOV_V
12.2.2
-
VIEW: APPS.M4R_3A6_OE_LINE_ACKS
12.2.2
-
VIEW: APPS.QP_CUSTOMER_ITEMS_V
12.1.1
-
VIEW: APPS.QP_CUSTOMER_ITEMS_V
12.2.2
-
View: M4R_3A6_OE_LINE_ACKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.M4R_3A6_OE_LINE_ACKS, object_name:M4R_3A6_OE_LINE_ACKS, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View same as OE_LINE_ACKS, with one additional column MODEL_REFERENCE_TEXT , implementation_dba_data: APPS.M4R_3A6_OE_LINE_ACKS ,
-
VIEW: APPS.M4R_3A6_OE_LINE_ACKS
12.1.1
-
VIEW: APPS.M4R_3A6_OE_LINE_ACKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.M4R_3A6_OE_LINE_ACKS, object_name:M4R_3A6_OE_LINE_ACKS, status:VALID,
-
VIEW: APPS.M4R_3A6_OE_LINE_ACKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.M4R_3A6_OE_LINE_ACKS, object_name:M4R_3A6_OE_LINE_ACKS, status:VALID,
-
VIEW: APPS.MSC_X_ITEMS_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_X_ITEMS_LOV_V, object_name:MSC_X_ITEMS_LOV_V, status:VALID,
-
View: M4R_3A6_OE_LINE_ACKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.M4R_3A6_OE_LINE_ACKS, object_name:M4R_3A6_OE_LINE_ACKS, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View same as OE_LINE_ACKS, with one additional column MODEL_REFERENCE_TEXT , implementation_dba_data: APPS.M4R_3A6_OE_LINE_ACKS ,
-
VIEW: APPS.MSC_X_ITEMS_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_X_ITEMS_LOV_V, object_name:MSC_X_ITEMS_LOV_V, status:VALID,
-
VIEW: APPS.QA_ERES_RCV_TRANS_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_ERES_RCV_TRANS_INTERFACE_V, object_name:QA_ERES_RCV_TRANS_INTERFACE_V, status:VALID,
-
VIEW: APPS.QA_ERES_RCV_TRANS_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_ERES_RCV_TRANS_INTERFACE_V, object_name:QA_ERES_RCV_TRANS_INTERFACE_V, status:VALID,
-
View: QP_CUSTOMER_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_CUSTOMER_ITEMS_V, object_name:QP_CUSTOMER_ITEMS_V, status:VALID, product: QP - Advanced Pricing , description: Customer item details. Used in the Pricing Agreements form. , implementation_dba_data: APPS.QP_CUSTOMER_ITEMS_V ,
-
View: QP_CUSTOMER_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_CUSTOMER_ITEMS_V, object_name:QP_CUSTOMER_ITEMS_V, status:VALID, product: QP - Advanced Pricing , description: Customer item details. Used in the Pricing Agreements form. , implementation_dba_data: APPS.QP_CUSTOMER_ITEMS_V ,
-
Lookup Type: RLM_REPORT_SORT_BY
12.1.1
product: RLM - Release Management , meaning: RLM_REPORT_SORT_BY ,
-
Lookup Type: RLM_REPORT_SORT_BY
12.2.2
product: RLM - Release Management , meaning: RLM_REPORT_SORT_BY ,
-
View: QA_ERES_RCV_TRANS_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_ERES_RCV_TRANS_INTERFACE_V, object_name:QA_ERES_RCV_TRANS_INTERFACE_V, status:VALID, product: QA - Quality , description: electronic record view for receiving transaction integration , implementation_dba_data: APPS.QA_ERES_RCV_TRANS_INTERFACE_V ,
-
View: QA_ERES_RCV_TRANS_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_ERES_RCV_TRANS_INTERFACE_V, object_name:QA_ERES_RCV_TRANS_INTERFACE_V, status:VALID, product: QA - Quality , description: electronic record view for receiving transaction integration , implementation_dba_data: APPS.QA_ERES_RCV_TRANS_INTERFACE_V ,
-
View: OE_LINE_ACKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_ACKS_V, object_name:OE_LINE_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Lines , implementation_dba_data: APPS.OE_LINE_ACKS_V ,
-
VIEW: APPS.OE_LINE_ACKS_V
12.1.1
-
View: OE_LINE_ACKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_ACKS_V, object_name:OE_LINE_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Lines , implementation_dba_data: APPS.OE_LINE_ACKS_V ,
-
VIEW: APPS.OE_LINE_ACKS_V
12.2.2
-
VIEW: ONT.OE_LINE_ACKS#
12.2.2
-
PACKAGE BODY: APPS.RLM_SETUP_TERMS_SV
12.2.2
-
PACKAGE BODY: APPS.RLM_SETUP_TERMS_SV
12.1.1
-
APPS.OE_BULK_ACK_PVT SQL Statements
12.2.2
-
APPS.OE_BULK_ACK_PVT SQL Statements
12.1.1
-
VIEW: ONT.OE_LINE_ACKS#
12.2.2
owner:ONT, object_type:VIEW, object_name:OE_LINE_ACKS#, status:VALID,
-
PACKAGE: APPS.OE_VALIDATE_ATTR
12.2.2
-
PACKAGE: APPS.OE_VALIDATE_ATTR
12.1.1
-
APPS.OE_LINE_ACK_UTIL SQL Statements
12.1.1
-
APPS.OE_LINE_ACK_UTIL SQL Statements
12.2.2
-
PACKAGE: APPS.RLM_SETUP_TERMS_SV
12.1.1
-
PACKAGE BODY: APPS.RLM_RLMDPDER_XMLP_PKG
12.2.2
-
PACKAGE: APPS.RLM_CUM_SV
12.2.2
-
PACKAGE BODY: APPS.RLM_RLMDPDER_XMLP_PKG
12.1.1
-
PACKAGE: APPS.RLM_SETUP_TERMS_SV
12.2.2
-
TYPE: APPS.OE_ACK_PUB_LINE_REC25
12.2.2
owner:APPS, object_type:TYPE, object_name:OE_ACK_PUB_LINE_REC25, status:VALID,
-
PACKAGE: APPS.OE_PRICE_LIST_PUB
12.1.1
-
PACKAGE: APPS.OE_PRICE_LIST_PUB
12.2.2
-
PACKAGE: APPS.RLM_CUM_SV
12.1.1
-
TYPE: APPS.OE_ACKNOWLEDGMENT_PUB_LINE_AC
12.2.2
owner:APPS, object_type:TYPE, object_name:OE_ACKNOWLEDGMENT_PUB_LINE_AC, status:VALID,
-
TYPE: APPS.OE_ACKNOWLEDGMENT_PUB_LINE_AC
12.1.1
owner:APPS, object_type:TYPE, object_name:OE_ACKNOWLEDGMENT_PUB_LINE_AC, status:VALID,
-
VIEW: APPS.OE_LINE_ACKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_ACKS_V, object_name:OE_LINE_ACKS_V, status:VALID,
-
TABLE: ONT.OE_LINE_ACKS
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_LINE_ACKS, object_name:OE_LINE_ACKS, status:VALID,
-
PACKAGE: APPS.OE_ID_TO_VALUE
12.2.2