Search Results purchase_order_num
Overview
APPS.CS_SR_PRODUCTS_MAINT_V is a Service (CS) module view that consolidates installed base product information required by the Service Request (SR) maintenance flow in Oracle E-Business Suite 12.1.1 and 12.2.2. The view presents one row per customer product record held in the Install Base, enriched with the originating order context, item description, revision, system membership, and serviced status. Its principal purpose is to return all product instances belonging to a particular customer account so that a service agent can identify, select, or validate the product referenced on a service request.
For users searching on the term original_order_number, this view is the relevant access point: the column ORIGINAL_ORDER_NUMBER is projected directly from the order header source, allowing the original sales order number associated with an installed instance to be displayed alongside the original line number and order date without navigating to Order Management tables. The view is owned by the APPS schema and is reported with VALID status in the ETRM repository.
Underlying Base Objects
The view joins several base objects in a single flattened projection. The Install Base record itself is supplied by CS_CUSTOMER_PRODUCTS_ALL, which contributes the customer product identifier, serial number, lot number, install site, parent product, status, and shipped date. Current revision data is joined from CS_CP_REVISIONS on both CUSTOMER_PRODUCT_ID and CURRENT_CP_REVISION_ID. Item context comes from MTL_SYSTEM_ITEMS, restricted to the validation organization returned by CS_STD.GET_ITEM_VALDN_ORGZN_ID.
Original order attributes are sourced from ASO_I_OE_ORDER_HEADERS_V and ASO_I_OE_ORDER_LINES_V, joined to the installed instance on ORIGINAL_ORDER_LINE_ID. Account and party names are resolved through HZ_CUST_ACCOUNTS and HZ_PARTIES. System membership is supplied by CS_SYSTEMS via an outer join on SYSTEM_ID, and the serviced status flag is derived through CS_LOOKUPS using the function CS_STD.CS_GET_SERVICED_STATUS. Supporting packages referenced by the view definition include FND_GLOBAL and CSICUMPI_PUB. Records with a customer product status of 4 or 1003 are excluded by the view predicate.
Key Columns
CUSTOMER_PRODUCT_ID— Primary identifier of the installed instance; the principal join key to service request product lines.ORIGINAL_ORDER_NUMBER— Order number from the header view for the original sales order, the column sought by the "original_order_number" search.ORIGINAL_ORDER_DATEandORIGINAL_LINE_NUMBER— Corresponding order date and line reference, giving full order provenance.CUSTOMER_ID,PRINCIPAL_PARTY_NAME— Account identifier and party name used to filter products by account.INVENTORY_ITEM_ID,PRODUCT_DESCRIPTION— Item identifier and descriptive text for the product.CURRENT_SERIAL_NUMBER,CP_LOT_NUMBER,REVISION— Serial, lot, and revision attributes of the current configuration.SYSTEM_ID,SYSTEM— System membership, resolved through an outer join.SERVICED_STATUS_FLAG— Lookup code indicating the current serviced status of the instance.MOST_RECENT_FLAG,REFERENCE_NUMBER,PURCHASE_ORDER_NUM,SHIPPED_DATE,QUANTITY— Additional attributes supporting selection and confirmation.
Common Use Cases and Queries
The view is typically queried by service request forms, extensions, and custom reports that must display the products owned by an account. A frequent pattern filters on the customer and retrieves current instances with their original order reference:
SELECT customer_product_id, current_serial_number, product_description, original_order_number, original_order_date, system FROM cs_sr_products_maint_v WHERE customer_id = :p_customer_id;SELECT customer_product_id, original_order_number, original_line_number, purchase_order_num FROM cs_sr_products_maint_v WHERE customer_product_id = :p_cp_id;SELECT customer_product_id, current_serial_number, serviced_status_flag FROM cs_sr_products_maint_v WHERE customer_id = :p_customer_id AND most_recent_flag = 'Y';
Because the view excludes inactive customer product statuses and applies a lookup-based serviced status, results represent serviceable instances suitable for direct use in SR product selection. Queries should restrict on CUSTOMER_ID, CUSTOMER_PRODUCT_ID, or INVENTORY_ITEM_ID to avoid broad scans across the Install Base.
-
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_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: 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: 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: 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: 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_FIND_EAM_PROD_MAINT_V
12.2.2
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_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: 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_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_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_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_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_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_CUST_PROD_FORM_V
12.2.2
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
View: CS_CUST_PROD_FORM_V
12.1.1
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
Lookup Type: CS_SR_AUDIT_FIELDS
12.1.1
product: CS - Service , meaning: CS_SR_AUDIT_FIELDS ,
-
View: CS_SR_SEARCH_NO_CONT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_SEARCH_NO_CONT_V, object_name:CS_SR_SEARCH_NO_CONT_V, status:VALID, product: CS - Service , description: This view is used in the SR find window on Bali spread table and in the Service History Bali Spreadtable of SR Tab , implementation_dba_data: APPS.CS_SR_SEARCH_NO_CONT_V ,
-
View: CS_INCIDENTS_B_SEC
12.1.1
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
View: CS_SR_SEARCH_NO_CONT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_SEARCH_NO_CONT_V, object_name:CS_SR_SEARCH_NO_CONT_V, status:VALID, product: CS - Service , description: This view is used in the SR find window on Bali spread table and in the Service History Bali Spreadtable of SR Tab , implementation_dba_data: APPS.CS_SR_SEARCH_NO_CONT_V ,
-
View: CS_SR_ACCESS_RESP_SEC
12.2.2
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
View: CS_INCIDENTS_B_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_B_SEC, object_name:CS_INCIDENTS_B_SEC, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_INCIDENTS_B_SEC ,
-
View: CS_INCIDENTS_VL_SEC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_VL_SEC FND.CS_INCIDENTS_VL_SEC, object_name:CS_INCIDENTS_VL_SEC, status:VALID, product: CS - Service , description: Multi-lingual Secured view based on CS_INCIDENTS_ALL_B_SEC_V view and CS_INCIDENTS_ALL_TL table. , implementation_dba_data: APPS.CS_INCIDENTS_VL_SEC ,
-
View: CS_SR_INCIDENTS_V_SEC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_INCIDENTS_V_SEC, object_name:CS_SR_INCIDENTS_V_SEC, status:VALID, product: CS - Service , description: Base view for SR main form. , implementation_dba_data: APPS.CS_SR_INCIDENTS_V_SEC ,
-
View: CS_SR_ACCESS_RESP_SEC
12.1.1
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
Lookup Type: CS_SR_AUDIT_FIELDS
12.2.2
product: CS - Service , meaning: CS_SR_AUDIT_FIELDS ,
-
View: CS_INCIDENTS_ALL_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_ALL_VL, object_name:CS_INCIDENTS_ALL_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_INCIDENTS_ALL_B and CS_INCIDENTS_ALL_TL tables. , implementation_dba_data: APPS.CS_INCIDENTS_ALL_VL ,
-
View: CS_SR_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_INCIDENTS_V, object_name:CS_SR_INCIDENTS_V, status:VALID, product: CS - Service , description: Base view for SR main form. , implementation_dba_data: APPS.CS_SR_INCIDENTS_V ,
-
View: CS_INCIDENTS_VL_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_VL_SEC FND.CS_INCIDENTS_VL_SEC, object_name:CS_INCIDENTS_VL_SEC, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_INCIDENTS_VL_SEC ,
-
View: CS_SR_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_INCIDENTS_V, object_name:CS_SR_INCIDENTS_V, status:VALID, product: CS - Service , description: Base view for SR main form. , implementation_dba_data: APPS.CS_SR_INCIDENTS_V ,
-
View: CS_SR_SEARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_SEARCH_V, object_name:CS_SR_SEARCH_V, status:VALID, product: CS - Service , description: This view is used in the SR find window on Bali spread table , implementation_dba_data: APPS.CS_SR_SEARCH_V ,
-
View: CS_SR_INCIDENTS_V_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_INCIDENTS_V_SEC, object_name:CS_SR_INCIDENTS_V_SEC, status:VALID, product: CS - Service , description: Base view for SR main form. , implementation_dba_data: APPS.CS_SR_INCIDENTS_V_SEC ,
-
View: CS_INCIDENTS_ALL_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_ALL_VL, object_name:CS_INCIDENTS_ALL_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_INCIDENTS_ALL_B and CS_INCIDENTS_ALL_TL tables. , implementation_dba_data: APPS.CS_INCIDENTS_ALL_VL ,
-
View: CS_SR_SEARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_SEARCH_V, object_name:CS_SR_SEARCH_V, status:VALID, product: CS - Service , description: This view is used in the SR find window on Bali spread table , implementation_dba_data: APPS.CS_SR_SEARCH_V ,
-
View: CS_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_V, object_name:CS_INCIDENTS_V, status:VALID, product: CS - Service , description: Service requests and their attributes. This view is used by the main service request form. , implementation_dba_data: APPS.CS_INCIDENTS_V ,
-
View: CS_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_V, object_name:CS_INCIDENTS_V, status:VALID, product: CS - Service , description: Service requests and their attributes. This view is used by the main service request form. , implementation_dba_data: APPS.CS_INCIDENTS_V ,
-
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 ,
-
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_INCIDENTS_AUDIT_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_AUDIT_VL, object_name:CS_INCIDENTS_AUDIT_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_INCIDENTS_AUDIT_B and CS_INCIDENTS_AUDIT_TL tables. , implementation_dba_data: APPS.CS_INCIDENTS_AUDIT_VL ,
-
View: CS_INCIDENTS_AUDIT_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_AUDIT_VL, object_name:CS_INCIDENTS_AUDIT_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_INCIDENTS_AUDIT_B and CS_INCIDENTS_AUDIT_TL tables. , implementation_dba_data: APPS.CS_INCIDENTS_AUDIT_VL ,