Search Results original_order_currency_code
Overview
APPS.CS_CUSTOMER_PRODUCTS is a reporting and integration view in Oracle E-Business Suite (EBS) Release 12.1.1 and 12.2.2 that presents the installed base of customer products tracked by the Oracle Service (CS) module. A "customer product" record represents a specific instance of an inventory item that a customer has purchased, installed, or received, and around which service, depot repair, contract, and entitlement activity is managed. The view exposes the full column set of the underlying customer products entity, including identity, financial, shipping, configuration, and descriptive flexfield attributes, making it a convenient single source for queries, concurrent programs, and outbound integrations that need to read installed-base data without directly referencing the multi-org base table.
Because the object is a view rather than a table, it is read-oriented. It plays a central role in customer-facing reporting such as installed-base extracts, warranty and return tracking, configuration reporting, and downstream data feeds to CRM or data warehouse systems. In the specific case of the searched column ORIGINAL_ORDER_CURRENCY_CODE, the view is the standard access point for retrieving the currency in which the customer's original sales order for the product was booked.
Underlying Base Objects
Per the documented ETRM metadata for 12.2.2, the view owner is APPS and its referenced base objects are:
- CS_CUSTOMER_PRODUCTS_ALL (SYNONYM) — the synonym resolving to the underlying customer products table, which stores one row per installed-base instance. This is the principal source of the columns projected by the view.
- CSICUMPI_PUB (PACKAGE) — a public server-side package referenced in the view definition (typically for derived or formatted values used in installed-base presentation logic).
The DDL is defined in the APPS schema and is therefore accessible to any responsibility or custom code with SELECT privilege on APPS objects. Since the base synonym is an "_ALL" object, the underlying data is partitioned by operating unit via ORG_ID; the view itself does not filter by operating unit, so consumers must apply their own ORG_ID or Multi-Org security predicate where appropriate.
Key Columns
- CUSTOMER_PRODUCT_ID — primary identifier for the installed-base instance; joins to CS_CUSTOMER_PRODUCTS_ALL and downstream service objects.
- CUSTOMER_ID / INVENTORY_ITEM_ID — the owning customer (HZ party/account) and the inventory item (product) representing the instance.
- ORIGINAL_ORDER_LINE_ID and ORIGINAL_ORDER_CURRENCY_CODE — the originating sales order line and the currency code in which that original order was transacted. The currency code is the answer to the common "what currency was the original order placed in?" requirement.
- ORIGINAL_NET_AMOUNT — the net value of the original order line, expressed in ORIGINAL_ORDER_CURRENCY_CODE.
- TYPE_CODE, SYSTEM_ID, PRODUCT_AGREEMENT_ID — classification, source system, and associated service agreement for the instance.
- CURRENT_CP_REVISION_ID, CURRENT_SERIAL_NUMBER, LOT_NUMBER — current revision, serial number, and lot for tracked items.
- QUANTITY, SHIPPED_FLAG, DELIVERED_FLAG, SHIPPED_DATE, RETURN_BY_DATE, ACTUAL_RETURNED_DATE, RMA_LINE_ID — fulfillment and return lifecycle attributes.
- CONFIG_* columns (CONFIG_ENABLED_FLAG, CONFIG_ROOT_ID, CONFIG_PARENT_ID, CONFIG_TYPE, PLATFORM_VERSION_ID) — support for configured products and their hierarchical structure.
- ATTRIBUTE1–15 and PRICING_ATTRIBUTE1–35 — descriptive and pricing flexfield segments for extensibility.
Common Use Cases and Queries
Typical usage includes installed-base extracts, warranty/return monitoring, configuration reporting, and reconciliation of service history against original order financials. To retrieve original order currency alongside identifying information:
SELECT customer_product_id, customer_id, inventory_item_id, original_order_line_id, original_order_currency_code, original_net_amount FROM apps.cs_customer_products WHERE customer_id = :p_customer_id AND org_id = :p_org_id;SELECT original_order_currency_code, SUM(original_net_amount) FROM apps.cs_customer_products WHERE org_id = :p_org_id GROUP BY original_order_currency_code;to summarize installed-base value by currency.- Join to CS_CUSTOMER_PRODUCTS_ALL or HZ_CUST_ACCOUNTS to enrich with customer and product descriptions, and always filter on ORG_ID to respect Multi-Org boundaries.
-
VIEW: APPS.CS_CUSTOMER_PRODUCTS
12.2.2
-
VIEW: CS.CS_CUSTOMER_PRODUCTS_ALL_OLD#
12.2.2
-
View: CS_CUSTOMER_PRODUCTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CUSTOMER_PRODUCTS, object_name:CS_CUSTOMER_PRODUCTS, status:VALID, product: CS - Service , description: A view of customer products by organization. , implementation_dba_data: APPS.CS_CUSTOMER_PRODUCTS ,
-
VIEW: APPS.CS_CUSTOMER_PRODUCTS
12.1.1
-
View: CS_CUSTOMER_PRODUCTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CUSTOMER_PRODUCTS, object_name:CS_CUSTOMER_PRODUCTS, status:VALID, product: CS - Service , description: A view of customer products by organization. , implementation_dba_data: APPS.CS_CUSTOMER_PRODUCTS ,
-
View: OKX_CUSTOMER_PRODUCTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_CUSTOMER_PRODUCTS_V, object_name:OKX_CUSTOMER_PRODUCTS_V, status:VALID, product: OKX - Contracts Integration , description: The installed base products information (customer products) , implementation_dba_data: APPS.OKX_CUSTOMER_PRODUCTS_V ,
-
View: OKX_CUSTOMER_PRODUCTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_CUSTOMER_PRODUCTS_V, object_name:OKX_CUSTOMER_PRODUCTS_V, status:VALID, product: OKX - Contracts Integration , description: The installed base products information (customer products) , implementation_dba_data: APPS.OKX_CUSTOMER_PRODUCTS_V ,
-
View: CSI_CUSTOMER_PRODUCTS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CUSTOMER_PRODUCTS_ALL_V, object_name:CSI_CUSTOMER_PRODUCTS_ALL_V, status:VALID, product: CSI - Install Base , description: Backward Compatible : Customer Products (Table View) , implementation_dba_data: APPS.CSI_CUSTOMER_PRODUCTS_ALL_V ,
-
View: CSI_CUSTOMER_PRODUCTS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CUSTOMER_PRODUCTS_ALL_V, object_name:CSI_CUSTOMER_PRODUCTS_ALL_V, status:VALID, product: CSI - Install Base , description: Backward Compatible : Customer Products (Table View) , implementation_dba_data: APPS.CSI_CUSTOMER_PRODUCTS_ALL_V ,
-
VIEW: APPS.OKX_CUSTOMER_PRODUCTS_V
12.1.1
-
VIEW: APPS.OKX_CUSTOMER_PRODUCTS_V
12.2.2
-
VIEW: APPS.CSI_CUSTOMER_PRODUCTS_ALL_V
12.2.2
-
VIEW: APPS.CSI_CUSTOMER_PRODUCTS_ALL_V
12.1.1
-
VIEW: APPS.CSI_CUSTOMER_PRODUCTS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CUSTOMER_PRODUCTS_ALL_V, object_name:CSI_CUSTOMER_PRODUCTS_ALL_V, status:VALID,
-
VIEW: APPS.CSI_CUSTOMER_PRODUCTS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CUSTOMER_PRODUCTS_ALL_V, object_name:CSI_CUSTOMER_PRODUCTS_ALL_V, status:VALID,
-
View: OKX_CUST_PROD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_CUST_PROD_V, object_name:OKX_CUST_PROD_V, status:VALID, product: OKX - Contracts Integration , description: The installed base products information (customer products) , implementation_dba_data: APPS.OKX_CUST_PROD_V ,
-
VIEW: CS.CS_CUSTOMER_PRODUCTS_ALL_OLD#
12.2.2
owner:CS, object_type:VIEW, object_name:CS_CUSTOMER_PRODUCTS_ALL_OLD#, status:VALID,
-
View: OKX_CUST_PROD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_CUST_PROD_V, object_name:OKX_CUST_PROD_V, status:VALID, product: OKX - Contracts Integration , description: The installed base products information (customer products) , implementation_dba_data: APPS.OKX_CUST_PROD_V ,
-
TABLE: CS.CS_CUSTOMER_PRODUCTS_ALL_OLD
12.2.2
owner:CS, object_type:TABLE, object_name:CS_CUSTOMER_PRODUCTS_ALL_OLD, status:VALID,
-
TABLE: CS.CS_CUSTOMER_PRODUCTS_ALL_OLD
12.1.1
owner:CS, object_type:TABLE, object_name:CS_CUSTOMER_PRODUCTS_ALL_OLD, status:VALID,
-
VIEW: APPS.OKX_CUSTOMER_PRODUCTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_CUSTOMER_PRODUCTS_V, object_name:OKX_CUSTOMER_PRODUCTS_V, status:VALID,
-
VIEW: APPS.OKX_CUSTOMER_PRODUCTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_CUSTOMER_PRODUCTS_V, object_name:OKX_CUSTOMER_PRODUCTS_V, status:VALID,
-
VIEW: APPS.OKX_CUST_PROD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_CUST_PROD_V, object_name:OKX_CUST_PROD_V, status:VALID,
-
VIEW: APPS.OKX_CUST_PROD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_CUST_PROD_V, object_name:OKX_CUST_PROD_V, status:VALID,
-
VIEW: APPS.CS_CUSTOMER_PRODUCTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CUSTOMER_PRODUCTS, object_name:CS_CUSTOMER_PRODUCTS, status:VALID,
-
VIEW: APPS.CS_CUSTOMER_PRODUCTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CUSTOMER_PRODUCTS, object_name:CS_CUSTOMER_PRODUCTS, status:VALID,
-
APPS.OKS_IBINT_PUB SQL Statements
12.1.1
-
APPS.OKS_IBINT_PUB dependencies on OE_ORDER_HEADERS_ALL
12.1.1
-
APPS.OKS_IBINT_PUB dependencies on OE_ORDER_LINES_ALL
12.1.1
-
APPS.OKS_IBINT_PUB dependencies on OE_ORDER_HEADERS_ALL
12.2.2
-
APPS.OKS_IBINT_PUB SQL Statements
12.2.2
-
APPS.OKS_IBINT_PUB dependencies on CSI_ITEM_INSTANCES
12.1.1
-
APPS.OKS_IBINT_PUB dependencies on OE_ORDER_LINES_ALL
12.2.2
-
APPS.OKS_IBINT_PUB dependencies on CSI_ITEM_INSTANCES
12.2.2
-
PACKAGE BODY: APPS.OKS_IBINT_PUB
12.1.1
-
PACKAGE BODY: APPS.OKS_IBINT_PUB
12.2.2
-
eTRM - OKX Tables and Views
12.2.2
-
eTRM - OKX Tables and Views
12.1.1
-
eTRM - CSI Tables and Views
12.2.2
description: Temporary table that holds the unprocessed XNP messages during data correction process. ,
-
eTRM - CSI Tables and Views
12.1.1
description: Temporary table that holds the unprocessed XNP messages during data correction process. ,
-
eTRM - CS Tables and Views
12.1.1
description: Table to store web conference details for an SR. ,
-
eTRM - CS Tables and Views
12.2.2