Search Results cs_sr_find_prod_maint_p_eam_v
Overview
CS_SR_FIND_PROD_MAINT_P_EAM_V is a Service (CS) module view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. Its stated purpose is to surface Enterprise Asset Management (eAM) asset records within the "Find Product" user interface used by Service Request and depot repair flows. In effect, the view projects CSI item instances (customer products) that were created from eAM-enabled inventory items and joined them to their originating sales order context, owner party, system hierarchy, and item master definition, producing a denormalized result set suitable for query-driven product selection screens. The view exposes a stable, read-only projection rather than storing data, and because it is defined entirely in SQL over public synonyms and views, it is also usable in custom reports, concurrent program extracts, and integration queries where service agents or interfaces must locate an asset by serial number, reference number, or original sales order line. Notably, the column ORIGINAL_LINE_NUMBER is sourced from OE_ORDER_LINES_ALL.LINE_NUMBER, tying each asset back to the exact sales order line that created it.
Underlying Base Objects
The view is defined over the following documented objects, resolved through APPS synonyms unless otherwise noted:
- CSI_ITEM_INSTANCES — the driving table, supplying instance identifiers, serial/lot/revision attributes, status, quantity, and location data.
- CSI_INSTANCE_STATUSES — joined to restrict records to statuses where INCIDENT_ALLOWED_FLAG = 'Y', ensuring only serviceable assets are returned.
- CSI_SYSTEMS_TL and CSI_SYSTEMS_B — outer-joined (via SYSTEM_ID) to resolve the system name in the user's language.
- MTL_SYSTEM_ITEMS_VL — the item master view; only items with SERV_REQ_ENABLED_CODE = 'E', COMMS_NL_TRACKABLE_FLAG = 'Y', and EAM_ITEM_TYPE in (1, 3) qualify.
- HZ_PARTIES — supplies the owner/principal party name and ID.
- OE_ORDER_HEADERS_ALL and OE_ORDER_LINES_ALL — joined through CSI_ITEM_INSTANCES.LAST_OE_ORDER_LINE_ID to provide original order date, order number, customer PO, original line number, and shipment date.
- MTL_PARAMETERS — supplies MAINT_ORGANIZATION_ID for the maintenance organization context.
- HZ_CUST_ACCOUNTS — documented as referenced, supporting the ownership/account relationship.
All joins are inner joins except the CSI_SYSTEMS_TL language-constrained outer join.
Key Columns
- CUSTOMER_PRODUCT_ID — ITEM.INSTANCE_ID; the primary asset instance identifier.
- CURRENT_SERIAL_NUMBER, CP_LOT_NUMBER, REVISION, QUANTITY, REFERENCE_NUMBER — core asset identification attributes from CSI_ITEM_INSTANCES.
- ORIGINAL_ORDER_NUMBER, ORIGINAL_ORDER_DATE, ORIGINAL_LINE_NUMBER, SHIPPED_DATE, PURCHASE_ORDER_NUM — sales order provenance, with ORIGINAL_LINE_NUMBER mapping to OE_ORDER_LINES_ALL.LINE_NUMBER.
- CUSTOMER_ID and PRINCIPAL_PARTY_NAME — owner party identity from HZ_PARTIES.
- PRODUCT_NAME and PRODUCT_DESCRIPTION — concatenated item segments and item description.
- SYSTEM and SYSTEM_ID — eAM system hierarchy assignment.
- CUSTOMER_PRODUCT_STATUS_ID — instance status used to derive serviced status; SERVICED_STATUS_FLAG is hard-coded to 'N' and MOST_RECENT_FLAG to 'Y', while INSTALL_SITE_USE_ID is returned as NULL and PARENT_CP_ID as 99999 to satisfy the Find Product UI contract.
Common Use Cases and Queries
Typical usage includes locating an eAM asset during service request creation, validating serial numbers against original sales order lines, and reconciling field-service inventory with order history. A representative query filtering on the original line number is:
SELECT customer_product_id, current_serial_number, original_order_number, original_line_number, product_name, principal_party_name FROM apps.cs_sr_find_prod_maint_p_eam_v WHERE original_line_number = :line_number AND current_serial_number = :serial_number;
For asset discovery by owner, constrain CUSTOMER_ID or PRINCIPAL_PARTY_NAME; for maintenance organization reporting, group by MAINT_ORGANIZATION_ID. Because the view enforces eAM item type, serviceable status, and active-date window predicates, callers should not expect non-eAM or inactive assets to appear; additional filtering on SYSTEM_ID or ORGANIZATION_ID is commonly applied to scope results to a specific operating unit or maintenance organization.
-
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_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 ,
-
SYNONYM: APPS.CSI_SYSTEMS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSI_SYSTEMS_TL, status:VALID,
-
SYNONYM: APPS.CSI_SYSTEMS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSI_SYSTEMS_B, status:VALID,
-
SYNONYM: APPS.CSI_SYSTEMS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSI_SYSTEMS_TL, status:VALID,
-
SYNONYM: APPS.CSI_SYSTEMS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSI_SYSTEMS_B, status:VALID,
-
SYNONYM: APPS.CSI_INSTANCE_STATUSES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSI_INSTANCE_STATUSES, status:VALID,
-
SYNONYM: APPS.CSI_INSTANCE_STATUSES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSI_INSTANCE_STATUSES, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
SYNONYM: APPS.CSI_ITEM_INSTANCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSI_ITEM_INSTANCES, status:VALID,
-
SYNONYM: APPS.CSI_ITEM_INSTANCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSI_ITEM_INSTANCES, status:VALID,
-
SYNONYM: APPS.OE_ORDER_HEADERS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_HEADERS_ALL, status:VALID,
-
SYNONYM: APPS.OE_ORDER_HEADERS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_HEADERS_ALL, status:VALID,
-
SYNONYM: APPS.OE_ORDER_LINES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_LINES_ALL, status:VALID,
-
SYNONYM: APPS.OE_ORDER_LINES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_LINES_ALL, status:VALID,
-
VIEW: APPS.MTL_SYSTEM_ITEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID,
-
VIEW: APPS.MTL_SYSTEM_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
SYNONYM: APPS.HZ_PARTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
SYNONYM: APPS.HZ_PARTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
eTRM - CS Tables and Views
12.2.2
-
eTRM - CS Tables and Views
12.1.1
description: Table to store web conference details for an SR. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - CS Tables and Views
12.1.1
description: Table to store web conference details for an SR. ,
-
eTRM - CS Tables and Views
12.2.2
-
eTRM - INV Tables and Views
12.1.1