Search Results current_serial_number
Overview
APPS.CS_CONFIG_RG_V is a reporting view in the Oracle E-Business Suite Customer Support (CS) / TeleService and Field Service schema. It presents a flattened, denormalized representation of the configured-item hierarchy maintained in the customer product tables, exposing both the parent and the top-level (root) configured item for each configuration relationship. In EBS 12.1.1 and 12.2.2 the view is owned by APPS and is used primarily for diagnostics, reporting, and integration queries where an installation or service engineer needs to resolve the genealogy of a configured product instance without writing recursive SQL.
The view is particularly relevant to searches for current_serial_number. It exposes two serialized columns — PARENT_SERIAL_NUMBER and TOP_SERIAL_NUMBER — sourced from CS_CUSTOMER_PRODUCTS_ALL.CURRENT_SERIAL_NUMBER. This allows a user to retrieve the serial number of an item at a given node and the serial number of the configuration root in a single query, which is valuable when serial-number tracking spans a multi-level configured bill of materials.
Underlying Base Objects
The view is defined over four documented base objects:
- CS_CUSTOMER_PRODUCTS_ALL (SYNONYM) — aliased twice as CP1 (parent) and CP2 (top/root). This is the core customer-product instance table in the CS schema.
- MTL_SYSTEM_ITEMS_KFV (SYNONYM) — aliased twice as KFV1 and KFV2, providing the concatenated item segments and item description for the parent and top items.
- CS_STD (PACKAGE) — supplies
GET_ITEM_VALDN_ORGZN_ID, which restricts item joins to the validation organization defined for the CS installation. - CSICUMPI_PUB (PACKAGE) — documented as a referenced package, generally associated with the customer-product instance APIs that maintain the underlying data.
The join path is a self-join on CS_CUSTOMER_PRODUCTS_ALL: CP2.CUSTOMER_PRODUCT_ID = CP1.CONFIG_ROOT_ID, meaning CP1 is any configured child and CP2 is the root of the configuration that child belongs to. Each is then joined to MTL_SYSTEM_ITEMS_KFV on inventory_item_id, filtered by the CS validation organization.
Key Columns
- PARENT_CP_ID — customer_product_id of the parent (child) instance in the configuration.
- PARENT_REFERENCE_NUMBER — reference number of that parent instance.
- PARENT_PRODUCT / PARENT_PRODUCT_DESCRIPTION — concatenated item segments and description of the parent item.
- PARENT_LOT_NUMBER — lot number recorded on the parent instance.
- PARENT_SERIAL_NUMBER — value of CURRENT_SERIAL_NUMBER on the parent instance.
- TOP_REFERENCE_NUMBER — reference number of the configuration root instance.
- TOP_PRODUCT / TOP_PRODUCT_DESCRIPTION — concatenated segments and description of the root item.
- TOP_LOT_NUMBER — lot number on the root instance.
- TOP_SERIAL_NUMBER — CURRENT_SERIAL_NUMBER on the root instance.
Common Use Cases and Queries
Typical uses include configuration genealogy reporting, service-desk lookup by serial number, and reconciliation of configured instances before upgrade. To locate a configuration by its serial number:
SELECT parent_cp_id, parent_reference_number, parent_product, parent_serial_number, top_reference_number, top_product, top_serial_number FROM apps.cs_config_rg_v WHERE parent_serial_number = :serial;SELECT * FROM apps.cs_config_rg_v WHERE top_serial_number = :serial;
Because the view restricts MTL_SYSTEM_ITEMS_KFV to the CS validation organization, results are scoped to configurations defined in the current environment. For hierarchical (multi-level) traversal beyond the parent/root pair, the view is generally joined back to CS_CUSTOMER_PRODUCTS_ALL on CONFIG_ROOT_ID.
-
VIEW: APPS.CS_CONFIG_RG_V
12.1.1
-
VIEW: APPS.CS_CONFIG_RG_V
12.2.2
-
VIEW: CSM.CSF_M_SRTASKS_INQ#
12.2.2
-
APPS.CS_ROUTING_UTL SQL Statements
12.2.2
-
VIEW: OKL.OKL_CONTRACT_IB_H#
12.2.2
-
APPS.CS_ROUTING_UTL SQL Statements
12.1.1
-
View: OKS_USAGE_COUNTERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_USAGE_COUNTERS_V, object_name:OKS_USAGE_COUNTERS_V, status:VALID, product: OKS - Service Contracts , description: View for Usage Counters for Service Contracts , implementation_dba_data: APPS.OKS_USAGE_COUNTERS_V ,
-
View: OKS_USAGE_COUNTERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_USAGE_COUNTERS_V, object_name:OKS_USAGE_COUNTERS_V, status:VALID, product: OKS - Service Contracts , description: View for Usage Counters for Service Contracts , implementation_dba_data: APPS.OKS_USAGE_COUNTERS_V ,
-
VIEW: APPS.OKS_USAGE_COUNTERS_V
12.2.2
-
VIEW: APPS.OKS_USAGE_COUNTERS_V
12.1.1
-
VIEW: CSL.CSL_CS_INCIDENTS_ALL_VL_INQ#
12.2.2
-
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 ,
-
View: BIL_FCTV_CS_INCIDENTS
12.2.2
product: BIL - Sales Intelligence (Obsolete) , description: Quantitative measures related to customer service requests , implementation_dba_data: Not implemented in this database ,
-
View: CSI_INSTANCE_ACCTS_RG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INSTANCE_ACCTS_RG_V, object_name:CSI_INSTANCE_ACCTS_RG_V, status:VALID, product: CSI - Install Base , description: Instance and Party Accounts view for record groups. , implementation_dba_data: APPS.CSI_INSTANCE_ACCTS_RG_V ,
-
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: CSI_INSTANCE_ACCTS_RG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INSTANCE_ACCTS_RG_V, object_name:CSI_INSTANCE_ACCTS_RG_V, status:VALID, product: CSI - Install Base , description: Instance and Party Accounts view for record groups. , implementation_dba_data: APPS.CSI_INSTANCE_ACCTS_RG_V ,
-
VIEW: CSM.CSM_INCIDENTS_ALL_INQ#
12.2.2
-
View: BIL_FCTV_CS_INCIDENTS
12.1.1
product: BIL - Sales Intelligence , description: Quantitative measures related to customer service requests , implementation_dba_data: Not implemented in this database ,
-
View: OKS_CUST_PRODUCTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_CUST_PRODUCTS_V, object_name:OKS_CUST_PRODUCTS_V, status:VALID, product: OKS - Service Contracts , description: This View is Used to Show the Product details in Service Authoring Form. (This is showed at Covered Level For Covered Product) , implementation_dba_data: APPS.OKS_CUST_PRODUCTS_V ,
-
View: OKS_CUST_PRODUCTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_CUST_PRODUCTS_V, object_name:OKS_CUST_PRODUCTS_V, status:VALID, product: OKS - Service Contracts , description: This View is Used to Show the Product details in Service Authoring Form. (This is showed at Covered Level For Covered Product) , implementation_dba_data: APPS.OKS_CUST_PRODUCTS_V ,
-
VIEW: CS.CS_CP_AUDIT#
12.2.2
-
VIEW: APPS.CSI_CUSTOMER_PRODUCTS_RG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CUSTOMER_PRODUCTS_RG_V, object_name:CSI_CUSTOMER_PRODUCTS_RG_V, status:VALID,
-
VIEW: APPS.OKS_CUST_PRODUCTS_V
12.1.1
-
VIEW: APPS.OKS_CUST_PRODUCTS_V
12.2.2
-
VIEW: APPS.CSI_INSTANCE_ACCTS_RG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INSTANCE_ACCTS_RG_V, object_name:CSI_INSTANCE_ACCTS_RG_V, status:VALID,
-
VIEW: APPS.CSI_CUSTOMER_PRODUCTS_RG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CUSTOMER_PRODUCTS_RG_V, object_name:CSI_CUSTOMER_PRODUCTS_RG_V, status:VALID,
-
VIEW: APPS.CSI_INSTANCE_ACCTS_RG_V
12.1.1
-
VIEW: APPS.CSI_INSTANCE_ACCTS_RG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INSTANCE_ACCTS_RG_V, object_name:CSI_INSTANCE_ACCTS_RG_V, status:VALID,
-
View: CS_SR_FIND_PROD_MAINT_P_EAM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_FIND_PROD_MAINT_P_EAM_V, object_name:CS_SR_FIND_PROD_MAINT_P_EAM_V, status:VALID, product: CS - Service , description: This view is used to bring eAM Assests in Find Product UI , implementation_dba_data: APPS.CS_SR_FIND_PROD_MAINT_P_EAM_V ,
-
VIEW: OKL.OKL_CONTRACT_IB_H#
12.2.2
owner:OKL, object_type:VIEW, object_name:OKL_CONTRACT_IB_H#, status:VALID,
-
VIEW: APPS.CSI_INSTANCE_ACCTS_RG_V
12.2.2
-
View: CS_SR_NEW_FIND_PROD_MAINT_P_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_NEW_FIND_PROD_MAINT_P_V, object_name:CS_SR_NEW_FIND_PROD_MAINT_P_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. This incorporates the 11.5.6 changes in Install base. , implementation_dba_data: APPS.CS_SR_NEW_FIND_PROD_MAINT_P_V ,
-
View: CS_SR_NEW_FIND_PROD_MAINT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_NEW_FIND_PROD_MAINT_V, object_name:CS_SR_NEW_FIND_PROD_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. This incorporates the 11.5.6 changes in Install base. , implementation_dba_data: APPS.CS_SR_NEW_FIND_PROD_MAINT_V ,
-
VIEW: APPS.OKS_CUST_PRODUCTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_CUST_PRODUCTS_V, object_name:OKS_CUST_PRODUCTS_V, status:VALID,
-
View: CS_SR_FIND_PROD_MAINT_P_EAM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_FIND_PROD_MAINT_P_EAM_V, object_name:CS_SR_FIND_PROD_MAINT_P_EAM_V, status:VALID, product: CS - Service , description: This view is used to bring eAM Assests in Find Product UI , implementation_dba_data: APPS.CS_SR_FIND_PROD_MAINT_P_EAM_V ,
-
View: CS_SR_UWQ_LABEL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_UWQ_LABEL_V, object_name:CS_SR_UWQ_LABEL_V, status:VALID, product: CS - Service , description: This view is a dummy view and will be used for creating label nodes in UWQ. , implementation_dba_data: APPS.CS_SR_UWQ_LABEL_V ,
-
View: CS_SR_NEW_FIND_PROD_MAINT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_NEW_FIND_PROD_MAINT_V, object_name:CS_SR_NEW_FIND_PROD_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. This incorporates the 11.5.6 changes in Install base. , implementation_dba_data: APPS.CS_SR_NEW_FIND_PROD_MAINT_V ,
-
VIEW: APPS.OKS_CUST_PRODUCTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_CUST_PRODUCTS_V, object_name:OKS_CUST_PRODUCTS_V, status:VALID,
-
View: CS_SR_FIND_PROD_MAINT_EAM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_FIND_PROD_MAINT_EAM_V, object_name:CS_SR_FIND_PROD_MAINT_EAM_V, status:VALID, product: CS - Service , description: This view is used to bring eAM Assets in Find Product UI , implementation_dba_data: APPS.CS_SR_FIND_PROD_MAINT_EAM_V ,
-
VIEW: APPS.CS_SR_FIND_EAM_PROD_MAINT_NM_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CS_SR_FIND_EAM_PROD_MAINT_NM_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.CS_SR_UWQ_LABEL_V
12.1.1
-
VIEW: APPS.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,
-
TABLE: CSM.CSF_M_SRTASKS_INQ
12.1.1
owner:CSM, object_type:TABLE, object_name:CSF_M_SRTASKS_INQ, status:VALID,
-
VIEW: CSM.CSF_M_SRTASKS_INQ#
12.2.2
owner:CSM, object_type:VIEW, object_name:CSF_M_SRTASKS_INQ#, status:VALID,
-
View: CS_SR_NEW_FIND_PROD_MAINT_P_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_NEW_FIND_PROD_MAINT_P_V, object_name:CS_SR_NEW_FIND_PROD_MAINT_P_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. This incorporates the 11.5.6 changes in Install base. , implementation_dba_data: APPS.CS_SR_NEW_FIND_PROD_MAINT_P_V ,
-
View: CS_SR_FIND_EAM_PROD_MAINT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_FIND_EAM_PROD_MAINT_V, object_name:CS_SR_FIND_EAM_PROD_MAINT_V, status:VALID, product: CS - Service , description: This view is used to filter Instance related fields LOV in Search Installed Base UI. , implementation_dba_data: APPS.CS_SR_FIND_EAM_PROD_MAINT_V ,
-
View: CS_SR_UWQ_LABEL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_UWQ_LABEL_V, object_name:CS_SR_UWQ_LABEL_V, status:VALID, product: CS - Service , description: This view is a dummy view and will be used for creating label nodes in UWQ. , implementation_dba_data: APPS.CS_SR_UWQ_LABEL_V ,
-
View: CS_SR_FIND_PROD_MAINT_EAM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_FIND_PROD_MAINT_EAM_V, object_name:CS_SR_FIND_PROD_MAINT_EAM_V, status:VALID, product: CS - Service , description: This view is used to bring eAM Assets in Find Product UI , implementation_dba_data: APPS.CS_SR_FIND_PROD_MAINT_EAM_V ,
-
VIEW: APPS.CSD_CP_REFERENCE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_CP_REFERENCE_V, object_name:CSD_CP_REFERENCE_V, status:VALID,