Search Results shipped_date
Overview
The APPS.CS_SR_FIND_PROD_MAINT_EAM_V view is a Service (CS) module database object that consolidates Enterprise Asset Management (eAM) asset records for presentation in the Find Product user interface. It is the data source behind the search and selection screens used by service agents and field service personnel when identifying a customer product against which a service request, incident, or depot repair activity will be raised. The view presents a single, denormalized row per tracked eAM instance, combining customer identity, product definition, order provenance, and asset status into a flattened projection.
Because the view is defined in the APPS schema and its source text is shipped with the product, it is treated as an Oracle-owned reporting object. It should not be modified; extensions and custom reporting should query the view as published.
Underlying Base Objects
The view is defined over the following documented base objects:
- CSI_ITEM_INSTANCES — the master table of tracked customer products and eAM asset instances; drives the row grain of the view.
- CSI_SYSTEMS_B and CSI_SYSTEMS_TL — the system (asset hierarchy parent) definition and its translated name.
- CSI_INSTANCE_STATUSES — supplies the instance status and enforces the INCIDENT_ALLOWED_FLAG filter.
- HZ_PARTIES — the owning party, providing the principal party name and customer ID.
- HZ_CUST_ACCOUNTS — the customer account context associated with the instance owner.
- MTL_SYSTEM_ITEMS_VL — the inventory item definition, supplying product name, description, and organization.
- MTL_PARAMETERS — the maintenance organization assignment.
- OE_ORDER_HEADERS_ALL and OE_ORDER_LINES_ALL — the originating sales order header and line, providing order numbers, dates, and shipment data.
All OE and CSI_SYSTEMS_TL joins are outer joins, so asset records without a surviving order line or translated system name are still returned. MTL_PARAMETERS and MTL_SYSTEM_ITEMS_VL participate as inner joins because every eAM instance must resolve to a serviced inventory item.
Key Columns
- CUSTOMER_PRODUCT_ID — INSTANCE_ID from CSI_ITEM_INSTANCES; the primary key of the returned asset.
- CUSTOMER_ID, PRINCIPAL_PARTY_NAME — the owning party identifier and display name.
- CURRENT_SERIAL_NUMBER, REFERENCE_NUMBER, CP_LOT_NUMBER, REVISION — physical identification attributes of the asset.
- SHIPPED_DATE — mapped from OE_ORDER_LINES_ALL.ACTUAL_SHIPMENT_DATE, the actual shipment date of the originating order line. This column is the target of the "shipped_date" search and is frequently used as a proxy for installation or in-service date when no separate install date exists.
- ORIGINAL_ORDER_DATE, ORIGINAL_ORDER_NUMBER, ORIGINAL_LINE_NUMBER, PURCHASE_ORDER_NUM — order provenance for the asset.
- CUSTOMER_PRODUCT_STATUS_ID, SERVICED_STATUS_FLAG, MOST_RECENT_FLAG — status controls; SERVICED_STATUS_FLAG is hard-coded to 'N' and MOST_RECENT_FLAG to 'Y'.
- PRODUCT_NAME, PRODUCT_DESCRIPTION, ORGANIZATION_ID, MAINT_ORGANIZATION_ID — item and organization context.
- INSTALL_SITE_USE_ID, PARENT_CP_ID, TYPE_CODE, SYSTEM, LOCATION_ID — hierarchy and location attributes; PARENT_CP_ID is returned as the constant 99999.
Common Use Cases and Queries
The primary scenario is populating the Find Product Lov or search block for eAM-enabled items. A typical filtered query retrieves assets by serial number or by shipment date window:
- Locating an asset by serial number before raising a service request.
- Reporting on assets shipped within a period for warranty or recall analysis.
- Reconciling eAM instances to their originating sales orders.
Sample SQL:
SELECT customer_product_id, current_serial_number, principal_party_name, shipped_date, original_order_number FROM apps.cs_sr_find_prod_maint_eam_v WHERE current_serial_number = :serial;SELECT customer_product_id, product_name, shipped_date FROM apps.cs_sr_find_prod_maint_eam_v WHERE shipped_date BETWEEN :from_date AND :to_date;SELECT principal_party_name, COUNT(*) FROM apps.cs_sr_find_prod_maint_eam_v GROUP BY principal_party_name;
Note that the view text filters on SERV_REQ_ENABLED_CODE = 'E', COMMS_NL_TRACKABLE_FLAG = 'Y', an active date window, and EAM_ITEM_TYPE in (1,3). Results are therefore restricted to currently active, service-request-enabled, communication-trackable eAM assets.
-
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_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_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_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_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_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_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_CP_INCLUDED_ITEMS_V
12.2.2
product: CS - Service , description: Included items of a product in the installed base , implementation_dba_data: Not implemented in this database ,
-
View: CS_CP_INCLUDED_ITEMS_V
12.1.1
product: CS - Service , description: Included items of a product in the installed base , implementation_dba_data: Not implemented in this database ,
-
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
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_CP_REVISIONS_MAINT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CP_REVISIONS_MAINT_V, object_name:CS_CP_REVISIONS_MAINT_V, status:VALID, product: CS - Service , description: Revision Details of a Product in InstalledBase , implementation_dba_data: APPS.CS_CP_REVISIONS_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_CP_REVISIONS_MAINT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CP_REVISIONS_MAINT_V, object_name:CS_CP_REVISIONS_MAINT_V, status:VALID, product: CS - Service , description: Revision Details of a Product in InstalledBase , implementation_dba_data: APPS.CS_CP_REVISIONS_MAINT_V ,
-
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_CUST_PROD_MAINT_V
12.2.2
product: CS - Service , description: New View for Customer Products - Performance , 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_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_CUST_PROD_MAINT_V
12.1.1
product: CS - Service , description: New View for Customer Products - Performance , implementation_dba_data: Not implemented in this database ,
-
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_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 ,