Search Results cp_service_status
Overview
The APPS.CS_SR_NEW_PRODUCTS_MAINT_V view is a Service (CS) module reporting object that consolidates customer product and item instance information for use by service request creation and maintenance flows. Its name reflects its purpose: to present "new products" — that is, customer-owned item instances eligible for service — in the format required by the service request maintenance user interface and related concurrent or integration processes. The view joins installed base item instances from the CSI schema with their owning party, inventory definitions, originating order information, and service status classification.
The view is owned by APPS and exposes a purpose-built projection of columns drawn from multiple EBS schemas. It is commonly referenced by service modules that need to display or validate the products that a customer owns before allowing service requests to be logged against them. Because it filters aggressively on serviced status, incident eligibility, and service-enabled inventory items, it returns only a curated set of records rather than the entire installed base.
Underlying Base Objects
The view is defined over a fixed set of base tables, synonyms, and views documented in the ETRM metadata:
- CSI_ITEM_INSTANCES (synonym) — the central installed base instance table, aliased ITEM, supplying instance number, serial number, status, location, and owner information.
- CSI_SYSTEMS_TL (synonym) — aliased SYS, providing the translated system name via an outer join on SYSTEM_ID and userenv('LANG').
- CSI_INSTANCE_STATUSES (synonym) — aliased INST, joined on INSTANCE_STATUS_ID and restricted to INCIDENT_ALLOWED_FLAG = 'Y'.
- CS_LOOKUPS (view) — aliased L2, filtered to LOOKUP_TYPE = 'CP_SERVICE_STATUS'. The CP_SERVICE_STATUS value is what the user search term references.
- MTL_SYSTEM_ITEMS (synonym) — aliased SI, joined on INVENTORY_ITEM_ID and constrained by ORGANIZATION_ID = CS_STD.Get_Item_Valdn_Orgzn_Id and SERV_REQ_ENABLED_CODE = 'E', COMMS_NL_TRACKABLE_FLAG = 'Y'.
- HZ_CUST_ACCOUNTS and HZ_PARTIES (synonyms) — aliased HZA and HZP, supplying account number and party name.
- ASO_I_OE_ORDER_HEADERS_V and ASO_I_OE_ORDER_LINES_V (views) — aliased OOH and OOL, outer-joined to provide the original order number, date, customer PO number, and line number.
- CS_STD (package) — supplies Get_Item_Valdn_Orgzn_Id and CS_GET_SERVICED_STATUS, the latter driving the serviced status flag.
- FND_GLOBAL (package) — supplies the language context via userenv('LANG').
Key Columns
- INSTANCE_ID, INSTANCE_NUMBER, SERIAL_NUMBER — primary identification of the customer product instance.
- PRINCIPAL_PARTY_NAME, ACCOUNT_NUMBER, PARTY_ACCOUNT_ID — owning customer information.
- INVENTORY_ITEM_ID, PRODUCT_DESCRIPTION — the inventory item and its description.
- CP_STATUS — derived from CSI_INSTANCE_STATUSES.NAME, indicating the instance status where incidents are permitted.
- SERVICED_STATUS_FLAG — the CP_SERVICE_STATUS lookup code returned by CS_STD.CS_GET_SERVICED_STATUS.
- ORIGINAL_ORDER_DATE, ORIGINAL_ORDER_NUMBER, PURCHASE_ORDER_NUMBER, ORIGINAL_LINE_NUMBER, ACTUAL_SHIPMENT_DATE — originating order context.
- MOST_RECENT_FLAG — hardcoded to 'Y' in the view definition.
- SYSTEM, SYSTEM_ID, LOT_NUMBER, INVENTORY_REVISION, QUANTITY, EXTERNAL_REFERENCE — additional instance attributes.
Common Use Cases and Queries
The view is typically queried to validate customer product ownership before creating a service request, to report on installed base by customer, or to inspect the CP_SERVICE_STATUS value. Because it is constrained by organization, service-enabled inventory, and incident-eligible statuses, results are pre-filtered for serviceability.
A representative query to find serviceable products for a customer:
SELECT account_number, product_description, serial_number,
cp_status, serviced_status_flag
FROM apps.cs_sr_new_products_maint_v
WHERE account_number = :p_account_number
AND cp_status IS NOT NULL;
To locate products whose serviced status is a specific value:
SELECT instance_number, serial_number, serviced_status_flag FROM apps.cs_sr_new_products_maint_v WHERE inventory_item_id = :p_item_id;
Because several joins are outer joins and the status flag is computed from package logic, queries should not assume non-null order or status columns. The CP_SERVICE_STATUS lookup referenced in the user search governs the SERVICED_STATUS_FLAG column, making it the natural filter for categorizing products by serviced state.
-
Lookup Type: CP_SERVICE_STATUS
12.2.2
product: CS - Service , meaning: CP_SERVICE_STATUS , description: Indicate service for serviced, unserviced, future, or current or future serviced product ,
-
Lookup Type: CP_SERVICE_STATUS
12.1.1
product: CS - Service , meaning: CP_SERVICE_STATUS , description: Indicate service for serviced, unserviced, future, or current or future serviced product ,
-
VIEW: APPS.CS_SR_NEW_PRODUCTS_MAINT_V
12.2.2
-
VIEW: APPS.CS_SR_PRODUCTS_MAINT_V
12.1.1
-
VIEW: APPS.CS_SR_PRODUCTS_MAINT_V
12.2.2
-
VIEW: APPS.CS_SR_NEW_PRODUCTS_MAINT_V
12.1.1
-
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_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_NEW_PRODUCTS_MAINT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_NEW_PRODUCTS_MAINT_V, object_name:CS_SR_NEW_PRODUCTS_MAINT_V, status:VALID, product: CS - Service , description: This view contains the information about all products in the InstallBase release 11.5.6 and higher . This view is used to get all product information for a particular account in Service request. , implementation_dba_data: APPS.CS_SR_NEW_PRODUCTS_MAINT_V ,
-
View: CS_SR_NEW_PRODUCTS_MAINT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_NEW_PRODUCTS_MAINT_V, object_name:CS_SR_NEW_PRODUCTS_MAINT_V, status:VALID, product: CS - Service , description: This view contains the information about all products in the InstallBase release 11.5.6 and higher . This view is used to get all product information for a particular account in Service request. , implementation_dba_data: APPS.CS_SR_NEW_PRODUCTS_MAINT_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2