Search Results cp_parameter_id
Overview
The CS_CP_PARAMETERS table is a core data object within the Oracle E-Business Suite (EBS) Service (CS) module. Its primary function, as documented in the ETRM, is to extend the CS_CUSTOMER_PRODUCTS_ALL table. In practice, this table serves as a flexible parameter storage mechanism, allowing for the capture of additional, user-defined attributes associated with a customer's product instance. This extensibility is critical for supporting complex service and maintenance scenarios where standard product information requires supplementary data points. The table's structure and foreign key relationship indicate it is a child entity, storing multiple parameter records for a single parent customer product record, thereby enabling detailed configuration and tracking within the service lifecycle.
Key Information Stored
The table's structure centers on linking parameter data to a specific customer product. The primary key, CP_PARAMETER_ID, uniquely identifies each parameter record. The most critical column is CUSTOMER_PRODUCT_ID, which is a foreign key linking directly to the CS_CUSTOMER_PRODUCTS_ALL table. This establishes the fundamental relationship. While the provided metadata does not list all columns, typical parameter tables in this context would include columns to store the parameter's name or code (e.g., PARAMETER_NAME, PARAMETER_CODE), its value (e.g., PARAMETER_VALUE, VALUE_VARCHAR2, VALUE_NUMBER), and potentially data type indicators. Additional standard columns like CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, and LAST_UPDATED_BY for auditing are also expected.
Common Use Cases and Queries
This table is central to queries and reports requiring detailed, attribute-specific information about serviced customer products. A common use case is generating configuration reports for installed base items or validating parameter settings during service request creation and resolution. For instance, a service technician might query for all parameter settings of a specific serialized product to diagnose an issue. A typical SQL pattern involves joining CS_CP_PARAMETERS to its parent table and other service-related entities.
- Basic Join to Parent:
SELECT cp.*, cpa.* FROM cs_cp_parameters cp, cs_customer_products_all cpa WHERE cp.customer_product_id = cpa.customer_product_id; - Finding Parameters for a Specific Product Instance:
SELECT parameter_name, parameter_value FROM cs_cp_parameters WHERE customer_product_id = <ID>;
Reporting often leverages this table to add dimensional detail to service history, contract coverage, and product configuration analyses.
Related Objects
The table's relationships are explicitly defined by its foreign key constraint. Its sole, documented parent table is CS_CUSTOMER_PRODUCTS_ALL. This is the primary and mandatory relationship for any data in CS_CP_PARAMETERS.
- CS_CUSTOMER_PRODUCTS_ALL: This is the master table for customer product associations. The CS_CP_PARAMETERS.CUSTOMER_PRODUCT_ID column references the CS_CUSTOMER_PRODUCTS_ALL.CUSTOMER_PRODUCT_ID primary key. All parameter records are scoped to a valid entry in this parent table.
While not listed in the provided metadata, it is plausible that this table may be referenced by service-specific views or APIs that aggregate customer product data for forms and reports within the EBS Service module interfaces.
-
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 ,
-
View: CS_CP_PARAMETERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CP_PARAMETERS_V, object_name:CS_CP_PARAMETERS_V, status:VALID, product: CS - Service , description: This view lists the Parameter details of each product in InstalledBase. , implementation_dba_data: APPS.CS_CP_PARAMETERS_V ,
-
View: CS_CP_PARAMETERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CP_PARAMETERS_V, object_name:CS_CP_PARAMETERS_V, status:VALID, product: CS - Service , description: This view lists the Parameter details of each product in InstalledBase. , implementation_dba_data: APPS.CS_CP_PARAMETERS_V ,