Search Results cs_customer_products_all
Overview
The CS_CUSTOMER_PRODUCTS_ALL table is the central repository for Customer Installed Base (CIB) information within Oracle E-Business Suite Service (CS) modules. It stores the master record of products and assets that have been sold, installed, or are otherwise under service at a customer's location. This table is fundamental to service management, enabling the tracking of service history, warranties, contracts, and repairs against specific customer-owned assets. Its role is critical for linking service activities, such as service requests and field service dispatches, to the physical product instances they pertain to. The "_ALL" suffix indicates it is a multi-organization enabled table, storing data partitioned by operating unit.
Key Information Stored
The table's structure captures comprehensive details about the installed product instance. The primary key is CUSTOMER_PRODUCT_ID, which uniquely identifies each asset record. Key foreign key relationships define the asset's context: CUSTOMER_ID links to HZ_CUST_ACCOUNTS (TCA), while INSTALL_SITE_USE_ID, SHIP_TO_SITE_USE_ID, and BILL_TO_SITE_USE_ID link to HZ_PARTY_SITES and HZ_CUST_ACCT_SITES_ALL for location data. The table manages product configuration through PARENT_CP_ID, CONFIG_ROOT_ID, and CONFIG_PARENT_ID, allowing representation of complex, multi-component assets. Status is tracked via CUSTOMER_PRODUCT_STATUS_ID linked to CS_CUSTOMER_PRODUCT_STATUSES. Critical inventory details are stored via MIB_INVENTORY_ITEM_ID, MIB_ORGANIZATION_ID, and MIB_REVISION_ID, linking to the Inventory master (MTL_ITEM_REVISIONS_B). The SYSTEM_ID links the asset to a broader CS_SYSTEMS_ALL_B record, and CURRENT_CP_REVISION_ID points to the active revision in CS_CP_REVISIONS.
Common Use Cases and Queries
This table is queried extensively for service delivery and asset reporting. Common scenarios include generating a customer's installed base report, validating warranty coverage during service request creation, and identifying assets eligible for a service contract renewal. A typical query retrieves product details for a specific customer, joining related TCA and Inventory tables:
SELECT ccp.CUSTOMER_PRODUCT_ID, ccp.SERIAL_NUMBER, hca.account_number, msib.segment1 item_code FROM CS_CUSTOMER_PRODUCTS_ALL ccp, HZ_CUST_ACCOUNTS hca, MTL_SYSTEM_ITEMS_B msib WHERE ccp.CUSTOMER_ID = hca.cust_account_id AND ccp.MIB_INVENTORY_ITEM_ID = msib.inventory_item_id AND ccp.MIB_ORGANIZATION_ID = msib.organization_id AND hca.account_number = 'CUST123';- Identifying the configuration hierarchy of an asset:
SELECT CONNECT_BY_ROOT SERIAL_NUMBER AS Root_Asset, LEVEL, SERIAL_NUMBER FROM CS_CUSTOMER_PRODUCTS_ALL START WITH CUSTOMER_PRODUCT_ID = :p_root_cp_id CONNECT BY PRIOR CUSTOMER_PRODUCT_ID = PARENT_CP_ID; - Joining to service requests (CS_INCIDENTS_ALL) via the CS_INCIDENTS_ALL.CUSTOMER_PRODUCT_ID column is a fundamental pattern for service history analysis.
Related Objects
CS_CUSTOMER_PRODUCTS_ALL has extensive relationships across the EBS suite. Key dependent service tables include CSD_REPAIRS, which logs repair orders against an asset, and CS_CONTACTS, which can list contacts associated with the product instance. Child tables CS_CP_LANGUAGES and CS_CP_PARAMETERS store translated descriptions and extended attributes, respectively. It is the parent table for revisions stored in CS_CP_REVISIONS. For transactional lineage, ORIGINAL_LINE_SERV_DETAIL_ID can link back to the original service line detail in CS_LINE_INST_DETAILS. Crucially, it is referenced by the core service request entity, CS_INCIDENTS_ALL, forming the primary link between reported problems and the affected asset.
-
Table: CS_CUSTOMER_PRODUCTS_ALL
12.1.1
product: CS - Service , description: The Customer installed base Products information. , implementation_dba_data: Not implemented in this database ,
-
Table: CS_CUSTOMER_PRODUCTS_ALL
12.2.2
product: CS - Service , description: The Customer installed base Products information. , implementation_dba_data: Not implemented in this database ,
-
Table: CS_CP_PARAMETERS
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_CP_PARAMETERS, object_name:CS_CP_PARAMETERS, status:VALID, product: CS - Service , description: Used to extend CS_CUSTOMER_PRODUCTS_ALL table. , implementation_dba_data: CS.CS_CP_PARAMETERS ,
-
Table: CS_CP_PARAMETERS
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_CP_PARAMETERS, object_name:CS_CP_PARAMETERS, status:VALID, product: CS - Service , description: Used to extend CS_CUSTOMER_PRODUCTS_ALL table. , implementation_dba_data: CS.CS_CP_PARAMETERS ,
-
Table: CS_CP_REVISIONS
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_CP_REVISIONS, object_name:CS_CP_REVISIONS, status:VALID, product: CS - Service , description: Revision information about products in the installed base , implementation_dba_data: CS.CS_CP_REVISIONS ,
-
Table: CS_LINE_INST_DETAILS
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_LINE_INST_DETAILS, object_name:CS_LINE_INST_DETAILS, status:VALID, product: CS - Service , description: Installation details of a product captured at the time of order or quote entry. , implementation_dba_data: CS.CS_LINE_INST_DETAILS ,
-
Table: CS_LINE_INST_DETAILS
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_LINE_INST_DETAILS, object_name:CS_LINE_INST_DETAILS, status:VALID, product: CS - Service , description: Installation details of a product captured at the time of order or quote entry. , implementation_dba_data: CS.CS_LINE_INST_DETAILS ,
-
Table: CS_CP_REVISIONS
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_CP_REVISIONS, object_name:CS_CP_REVISIONS, status:VALID, product: CS - Service , description: Revision information about products in the installed base , implementation_dba_data: CS.CS_CP_REVISIONS ,
-
View: CS_CONFIG_RG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CONFIG_RG_V, object_name:CS_CONFIG_RG_V, status:VALID, product: CS - Service , description: Configuration Information for product and its subcomponents , implementation_dba_data: APPS.CS_CONFIG_RG_V ,
-
View: CS_CONFIG_RG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CONFIG_RG_V, object_name:CS_CONFIG_RG_V, status:VALID, product: CS - Service , description: Configuration Information for product and its subcomponents , implementation_dba_data: APPS.CS_CONFIG_RG_V ,
-
Table: CS_CP_LANGUAGES
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_CP_LANGUAGES, object_name:CS_CP_LANGUAGES, status:VALID, product: CS - Service , description: The languages appliacable to a product (to be used when Installed Base is used to store software products) , implementation_dba_data: CS.CS_CP_LANGUAGES ,
-
Table: CS_CUSTOMER_PRODUCT_STATUSES
12.1.1
product: CS - Service , description: Statuses that can be assigned to products in the installed base , implementation_dba_data: Not implemented in this database ,
-
View: CS_IB_PARTY_NAME_V
12.1.1
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
Table: CS_CP_LANGUAGES
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_CP_LANGUAGES, object_name:CS_CP_LANGUAGES, status:VALID, product: CS - Service , description: The languages appliacable to a product (to be used when Installed Base is used to store software products) , implementation_dba_data: CS.CS_CP_LANGUAGES ,
-
Table: CS_CONTACTS
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_CONTACTS, object_name:CS_CONTACTS, status:VALID, product: CS - Service , description: Party and employee information related to an entity. , implementation_dba_data: CS.CS_CONTACTS ,
-
View: CS_CP_INCLUDED_ITEMS_V
12.2.2
product: CS - Service , description: Included items of a product in the installed base , implementation_dba_data: Not implemented in this database ,
-
Table: CS_CUSTOMER_PRODUCT_STATUSES
12.2.2
product: CS - Service , description: Statuses that can be assigned to products in the installed base , implementation_dba_data: Not implemented in this database ,
-
Table: CS_CONTACTS
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_CONTACTS, object_name:CS_CONTACTS, status:VALID, product: CS - Service , description: Party and employee information related to an entity. , implementation_dba_data: CS.CS_CONTACTS ,
-
Table: CS_INCIDENTS_ALL_B
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_INCIDENTS_ALL_B, object_name:CS_INCIDENTS_ALL_B, status:VALID, product: CS - Service , description: This table stores non-translated information about service requests. , implementation_dba_data: CS.CS_INCIDENTS_ALL_B ,
-
View: CS_IB_PARTY_NAME_V
12.2.2
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
Table: CS_SYSTEMS_ALL_B
12.1.1
product: CS - Service , description: Systems , implementation_dba_data: Not implemented in this database ,
-
Table: CS_ESTIMATE_DETAILS
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_ESTIMATE_DETAILS, object_name:CS_ESTIMATE_DETAILS, status:VALID, product: CS - Service , description: Transaction table that stores details of Charge lines in Service , implementation_dba_data: CS.CS_ESTIMATE_DETAILS ,
-
Table: CS_INCIDENTS_ALL_B
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_INCIDENTS_ALL_B, object_name:CS_INCIDENTS_ALL_B, status:VALID, product: CS - Service , description: This table stores non-translated information about service requests. , implementation_dba_data: CS.CS_INCIDENTS_ALL_B ,
-
View: CS_CP_INCLUDED_ITEMS_V
12.1.1
product: CS - Service , description: Included items of a product in the installed base , implementation_dba_data: Not implemented in this database ,
-
Table: CS_ESTIMATE_DETAILS
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_ESTIMATE_DETAILS, object_name:CS_ESTIMATE_DETAILS, status:VALID, product: CS - Service , description: Transaction table that stores details of Charge lines in Service , implementation_dba_data: CS.CS_ESTIMATE_DETAILS ,
-
Table: CS_SYSTEMS_ALL_B
12.2.2
product: CS - Service , description: Systems , implementation_dba_data: Not implemented in this database ,
-
View: CS_ACC_CP_RG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_ACC_CP_RG_V, object_name:CS_ACC_CP_RG_V, status:VALID, product: CS - Service , description: This view is used by the main service request form for a record group to retrieve install base information. , implementation_dba_data: APPS.CS_ACC_CP_RG_V ,
-
View: CS_ACC_CP_RG_V_1155
12.1.1
product: CS - Service , description: This view is used by the main service request form for a record group to retrieve install base information. , implementation_dba_data: Not implemented in this database ,
-
View: CS_ACC_CP_RG_V_1155
12.2.2
product: CS - Service , description: This view is used by the main service request form for a record group to retrieve install base information. , implementation_dba_data: Not implemented in this database ,
-
View: CS_SR_PRODUCTS_MAINT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_PRODUCTS_MAINT_V, object_name:CS_SR_PRODUCTS_MAINT_V, status:VALID, product: CS - Service , description: This view contains the information about all products in the InstallBase. This view is using to get all product information for a perticular account in Service request. , implementation_dba_data: APPS.CS_SR_PRODUCTS_MAINT_V ,
-
View: CS_SR_PRODUCTS_MAINT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_PRODUCTS_MAINT_V, object_name:CS_SR_PRODUCTS_MAINT_V, status:VALID, product: CS - Service , description: This view contains the information about all products in the InstallBase. This view is using to get all product information for a perticular account in Service request. , implementation_dba_data: APPS.CS_SR_PRODUCTS_MAINT_V ,
-
View: CS_CUSTOMER_PRODUCTS_REPORT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CUSTOMER_PRODUCTS_REPORT_V, object_name:CS_CUSTOMER_PRODUCTS_REPORT_V, status:VALID, product: CS - Service , description: - Retrofitted , implementation_dba_data: APPS.CS_CUSTOMER_PRODUCTS_REPORT_V ,
-
View: CS_CP_REVISIONS_MAINT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CP_REVISIONS_MAINT_V, object_name:CS_CP_REVISIONS_MAINT_V, status:VALID, product: CS - Service , description: Revision Details of a Product in InstalledBase , implementation_dba_data: APPS.CS_CP_REVISIONS_MAINT_V ,
-
View: CS_ACC_CP_RG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_ACC_CP_RG_V, object_name:CS_ACC_CP_RG_V, status:VALID, product: CS - Service , description: This view is used by the main service request form for a record group to retrieve install base information. , implementation_dba_data: APPS.CS_ACC_CP_RG_V ,
-
View: CS_CP_REVISIONS_MAINT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CP_REVISIONS_MAINT_V, object_name:CS_CP_REVISIONS_MAINT_V, status:VALID, product: CS - Service , description: Revision Details of a Product in InstalledBase , implementation_dba_data: APPS.CS_CP_REVISIONS_MAINT_V ,
-
View: CS_CUSTOMER_PRODUCTS_REPORT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CUSTOMER_PRODUCTS_REPORT_V, object_name:CS_CUSTOMER_PRODUCTS_REPORT_V, status:VALID, product: CS - Service , description: - Retrofitted , implementation_dba_data: APPS.CS_CUSTOMER_PRODUCTS_REPORT_V ,
-
View: CS_CP_AUDIT_MAINTAIN_V
12.2.2
product: CS - Service , description: View of the Customer Product Audit table , implementation_dba_data: Not implemented in this database ,
-
View: CS_CP_AUDIT_MAINTAIN_V
12.1.1
product: CS - Service , description: View of the Customer Product Audit table , implementation_dba_data: Not implemented in this database ,
-
View: CS_CP_AUDIT_MAINT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CP_AUDIT_MAINT_V, object_name:CS_CP_AUDIT_MAINT_V, status:VALID, product: CS - Service , description: Audit information for customer products , implementation_dba_data: APPS.CS_CP_AUDIT_MAINT_V ,
-
View: CS_CP_AUDIT_MAINT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CP_AUDIT_MAINT_V, object_name:CS_CP_AUDIT_MAINT_V, status:VALID, product: CS - Service , description: Audit information for customer products , implementation_dba_data: APPS.CS_CP_AUDIT_MAINT_V ,
-
View: CS_CUST_PROD_MAINT_V
12.1.1
product: CS - Service , description: New View for Customer Products - Performance , implementation_dba_data: Not implemented in this database ,
-
View: CS_CUST_PROD_MAINT_V
12.2.2
product: CS - Service , description: New View for Customer Products - Performance , implementation_dba_data: Not implemented in this database ,
-
View: CS_INCIDENTS_DIARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_DIARY_V, object_name:CS_INCIDENTS_DIARY_V, status:VALID, product: CS - Service , description: This view is not used anymore. This has been obsoleted. Starting 11.5.6 this view will not be supported and will remain just for backward compatability. The view CS_INCIDENTS_LOG_V has some of the functionality from this view but is not a c , implementation_dba_data: APPS.CS_INCIDENTS_DIARY_V ,
-
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: 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: CS_CP_MAINT_V
12.2.2
product: CS - Service , description: Products in the installed base , implementation_dba_data: Not implemented in this database ,
-
View: CS_CP_MAINT_V
12.1.1
product: CS - Service , description: Products in the installed base , implementation_dba_data: Not implemented in this database ,
-
View: CS_INCIDENTS_DIARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_DIARY_V, object_name:CS_INCIDENTS_DIARY_V, status:VALID, product: CS - Service , description: This view is not used anymore. This has been obsoleted. Starting 11.5.6 this view will not be supported and will remain just for backward compatability. The view CS_INCIDENTS_LOG_V has some of the functionality from this view but is not a c , implementation_dba_data: APPS.CS_INCIDENTS_DIARY_V ,
-
View: CS_CUSTOMER_PRODUCTS_MAINT_V
12.1.1
product: CS - Service , description: Products in the installed base , implementation_dba_data: Not implemented in this database ,
-
View: CS_CUSTOMER_PRODUCTS_MAINT_V
12.2.2
product: CS - Service , description: Products in the installed base , implementation_dba_data: Not implemented in this database ,