Search Results csp_picklist_lines_v1
Overview
The CSP_PICKLIST_LINES_V1 view is a reporting construct within the Oracle E-Business Suite Spares Management (CSP) module, owned by the APPS schema. It presents consolidated picklist line information by joining picklist header and line data with move order, inventory item, subinventory, and incident (service request) details. The view exposes only rows associated with active picklists — specifically those whose header status is 3 (picked/released) and whose move order lines carry a line status of 3 or 7 — and filters to lines where the outstanding packed quantity is greater than zero. Because it resolves the outstanding quantity dynamically through a call to the CSP_PACKLIST_PVT package, the view reflects current packing state rather than a static snapshot.
In Oracle EBS 12.1.1 and 12.2.2, this view serves as a convenient reporting and integration surface for spare parts fulfillment. It is not a base table; it is a derived, read-only object intended for queries in custom reports, OAF/ADF extensions, and outbound integrations that require a joined view of picklist activity tied to field service incidents.
Underlying Base Objects
The view is defined over ten referenced objects. The core picklist data originates from the CSP_PICKLIST_HEADERS and CSP_PICKLIST_LINES synonyms (base tables in the CSP schema). Item and revision attributes are resolved through MTL_SYSTEM_ITEMS_VL, while move order context is drawn from MTL_TXN_REQUEST_HEADERS and MTL_TXN_REQUEST_LINES. Subinventory validation joins CSP_SEC_INVENTORIES. Move order header and line relationships are supplied by CSP_MOVEORDER_HEADERS and CSP_MOVEORDER_LINES, which are matched to the transaction request lines. Service request linkage is provided by CS_INCIDENTS_ALL, joined via an outer join (CIA.INCIDENT_ID(+) = CML.INCIDENT_ID), so picklist lines without an associated incident are retained. The outstanding packed quantity is computed by calling the CSP_PACKLIST_PVT package function PACKED_QUANTITY.
Key Columns
- ROW_ID — the ROWID of the underlying CSP_PICKLIST_LINES row.
- PICKLIST_NUMBER / PICKLIST_HEADER_ID — picklist header identifier and human-readable number.
- ITEM_NUMBER / ITEM_DESCRIPTION / INVENTORY_ITEM_ID / REVISION — item and revision attributes from MTL_SYSTEM_ITEMS_VL.
- QUANTITY_PICKED — net quantity picked, derived as CPIL.QUANTITY_PICKED minus the packed quantity.
- REQUEST_NUMBER / HEADER_ID / LINE_NUMBER / LINE_ID / ORGANIZATION_ID — move order request and line identifiers.
- PICKLIST_LINE_NUMBER / PICKLIST_LINE_ID — picklist line references.
- UOM_CODE — unit of measure for the picked quantity.
- SERVICE_REQUEST_NUMBER — incident number from CS_INCIDENTS_ALL.
- DATE_REQUIRED — required date from the move order line.
- LOCATION_ID / PARTY_SITE_ID / CARRIER / SHIPMENT_METHOD — shipping destination and carrier details from CSP_MOVEORDER_HEADERS.
- SUBINVENTORY_CODE — destination subinventory from CSP_SEC_INVENTORIES.
Common Use Cases and Queries
Typical scenarios include open picklist monitoring, shortages-and-shipping reporting, and linking spares activity to service requests. The following query lists outstanding picklist lines for a given request number:
SELECT picklist_number, item_number, revision,
quantity_picked, uom_code,
service_request_number, date_required
FROM apps.csp_picklist_lines_v1
WHERE request_number = :p_request_number
ORDER BY picklist_line_number;
To report all service requests with pending picklist activity:
SELECT service_request_number, picklist_number,
item_number, quantity_picked, subinventory_code
FROM apps.csp_picklist_lines_v1
WHERE service_request_number IS NOT NULL;
Filters on PICKLIST_HEADER_ID, ORGANIZATION_ID, or DATE_REQUIRED are also common for operational dashboards and backlog analysis, since the view already restricts results to active, unpacked lines.
-
View: CSP_PICKLIST_LINES_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PICKLIST_LINES_V1, object_name:CSP_PICKLIST_LINES_V1, status:VALID, product: CSP - Spares Management , description: Picklist line information , implementation_dba_data: APPS.CSP_PICKLIST_LINES_V1 ,
-
View: CSP_PICKLIST_LINES_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PICKLIST_LINES_V1, object_name:CSP_PICKLIST_LINES_V1, status:VALID, product: CSP - Spares Management , description: Picklist line information , implementation_dba_data: APPS.CSP_PICKLIST_LINES_V1 ,
-
PACKAGE: APPS.CSP_PACKLIST_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:CSP_PACKLIST_PVT, status:VALID,
-
SYNONYM: APPS.CSP_PICKLIST_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSP_PICKLIST_HEADERS, status:VALID,
-
SYNONYM: APPS.CSP_MOVEORDER_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSP_MOVEORDER_LINES, status:VALID,
-
PACKAGE: APPS.CSP_PACKLIST_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:CSP_PACKLIST_PVT, status:VALID,
-
SYNONYM: APPS.CSP_PICKLIST_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSP_PICKLIST_HEADERS, status:VALID,
-
SYNONYM: APPS.CSP_PICKLIST_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSP_PICKLIST_LINES, status:VALID,
-
SYNONYM: APPS.CSP_PICKLIST_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSP_PICKLIST_LINES, status:VALID,
-
SYNONYM: APPS.CSP_MOVEORDER_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSP_MOVEORDER_HEADERS, status:VALID,
-
SYNONYM: APPS.CSP_MOVEORDER_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSP_MOVEORDER_HEADERS, status:VALID,
-
SYNONYM: APPS.CSP_MOVEORDER_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSP_MOVEORDER_LINES, status:VALID,
-
SYNONYM: APPS.CSP_SEC_INVENTORIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSP_SEC_INVENTORIES, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.CS_INCIDENTS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENTS_ALL, status:VALID,
-
SYNONYM: APPS.CSP_SEC_INVENTORIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSP_SEC_INVENTORIES, status:VALID,
-
SYNONYM: APPS.CS_INCIDENTS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENTS_ALL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.CSP_PICKLIST_LINES_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PICKLIST_LINES_V1, object_name:CSP_PICKLIST_LINES_V1, status:VALID,
-
SYNONYM: APPS.MTL_TXN_REQUEST_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_TXN_REQUEST_HEADERS, status:VALID,
-
VIEW: APPS.CSP_PICKLIST_LINES_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_PICKLIST_LINES_V1, object_name:CSP_PICKLIST_LINES_V1, status:VALID,
-
SYNONYM: APPS.MTL_TXN_REQUEST_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_TXN_REQUEST_HEADERS, status:VALID,
-
SYNONYM: APPS.MTL_TXN_REQUEST_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_TXN_REQUEST_LINES, status:VALID,
-
SYNONYM: APPS.MTL_TXN_REQUEST_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_TXN_REQUEST_LINES, 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,
-
eTRM - CSP Tables and Views
12.2.2
description: Summarized usage history information ,
-
eTRM - CSP Tables and Views
12.1.1
description: Summarized usage history information ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - CSP Tables and Views
12.1.1
description: Summarized usage history information ,
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - CSP Tables and Views
12.2.2
description: Summarized usage history information ,
-
eTRM - INV Tables and Views
12.1.1