Search Results install_to_county




Overview

CS_CUST_PROD_FORM_V is a Service (CS) module view that consolidates customer product information — the installed base records that represent products a customer owns or has received — into a single denormalized result set. In Oracle EBS 12.1.1 and 12.2.2, the view joins the core customer products table (CS_CUSTOMER_PRODUCTS) to associated status, system, item, agreement, order-line, and party reference data, producing the flattened structure consumed by Service/Field Service forms and by the Customer Product (ISUR — Install, Setup, Update, Repair) flows surfaced through the Service Portal.

The user search term "Service Portal - ISUR Home" reflects a common entry point: the ISUR home dashboard exposes installed-base items to service agents and technicians, and the underlying query feeding that page relies on a view such as CS_CUST_PROD_FORM_V to return customer product rows with account, party, status, order, and serial-number context in one pass. This makes the view important for both online form rendering and downstream reporting/integration.

Underlying Base Objects

The view text SELECTs from several base objects through aliases:

Note the ETRM metadata marks this view as "Not implemented in this database" for the queried instance and documents no referenced base objects, so column-level lineage above is derived from the view text rather than a catalog dependency.

Key Columns

Common Use Cases and Queries

Typical uses include populating the ISUR home list for a Service Portal user, validating whether a product may accept an incident or service order, and reporting installed base by customer, item, or status.

SELECT ACCOUNT_NUMBER,
       PRINCIPAL_PARTY_NAME,
       PRODUCT_DESCRIPTION,
       CURRENT_SERIAL_NUMBER,
       CP_STATUS,
       INSTALLATION_DATE
FROM   CS_CUST_PROD_FORM_V
WHERE  ACCOUNT_NUMBER = :p_account
  AND  MOST_RECENT_FLAG = 'Y'
  AND  ORG_ID = :p_org_id;

A second common pattern restricts to products eligible for service activity:

SELECT CUSTOMER_PRODUCT_ID, PRODUCT_DESCRIPTION, CP_STATUS
FROM   CS_CUST_PROD_FORM_V
WHERE  SERVICE_ORDER_ALLOWED_FLAG = 'Y'
  AND  TERMINATED_FLAG = 'N';

Because the metadata does not confirm deployment in the queried environment, consumers should verify the view's presence in their specific 12.1.1 or 12.2.2 instance before relying on it for customization.