Search Results icx_po_late_receipts_v
Overview
ICX_PO_LATE_RECEIPTS_V is a read-only view owned by the APPS schema in Oracle E-Business Suite, defined within the ICX (Oracle iProcurement) product family. Its documented purpose is to expose "Overdue Receipts" — purchase order shipment or line-location records where a receipt is expected but has not yet been fully recorded against the demanded or promised date. The view is a reporting and integration artifact rather than a transactional entity; it does not store data of its own and cannot be updated directly.
The view serves as the data source behind iProcurement features that surface late or outstanding receipts to requesters, buyers, and receiving personnel. Because it joins purchasing, receiving-quantity, vendor, and human-resources location information into a single flattened result set, it is well suited to inquiry screens, concurrent reporting, and custom extracts. The presence of QUANTITY_ACCEPTED among its columns is significant: it allows consumers to distinguish quantities that have been both received and accepted from those merely received or still outstanding, which supports accurate three-way match and accrual reporting. In 12.1.1 and 12.2.2 the view retains a VALID status and its definition is essentially unchanged across the two releases.
Underlying Base Objects
The view is defined primarily over PO_LINE_LOCATIONS (aliased PLL), which supplies the shipment-level attributes, and it is enriched by joins to PO_HEADERS (POH), PO_RELEASES (POR), PO_LINES, PO_LINE_TYPES, and PO_DOCUMENT_TYPES. Vendor data is obtained from PO_VENDORS, PO_VENDOR_SITES, and PO_VENDOR_CONTACTS, while ship-to location codes come from HR_LOCATIONS (HRL). Supporting objects include FINANCIALS_SYSTEM_PARAMETERS, MTL_SYSTEM_ITEMS_KFV, and the packages FND_GLOBAL, HR_GENERAL, and PO_INQ_SV. PO_INQ_SV.GET_PERSON_NAME is called to resolve buyer (agent) identifiers into display names, and DECODE logic across PO_RELEASE_ID determines whether the row pertains to a standard purchase order or a release against a blanket agreement.
Key Columns
The view exposes the full line-location attribute set with several derived values. Central columns include:
PO_LINE_ID,LINE_LOCATION_ID,PO_HEADER_ID, andPO_RELEASE_ID— primary keys linking back to purchasing entities.QUANTITY,QUANTITY_RECEIVED,QUANTITY_ACCEPTED,QUANTITY_REJECTED,QUANTITY_BILLED, andQUANTITY_CANCELLED— the receipt and invoicing quantities;QUANTITY_ACCEPTEDreflects units that passed inspection and were accepted.NEED_BY_DATE,PROMISED_DATE,LAST_ACCEPT_DATE,DAYS_EARLY_RECEIPT_ALLOWED, andDAYS_LATE_RECEIPT_ALLOWED— dating and tolerance controls driving the "late" determination.RECEIPT_REQUIRED_FLAG,INSPECTION_REQUIRED_FLAG, andCLOSED_CODE— receipt/inspection requirements and line closure status.- Document and party identifiers such as the concatenated PO/release number, vendor name, vendor site code, buyer name, currency, and authorization status.
Common Use Cases and Queries
Typical scenarios include overdue-receipt dashboards, buyer follow-up lists, and reconciliation of received versus accepted quantities. Because QUANTITY_ACCEPTED is available alongside QUANTITY_RECEIVED, reports can isolate shipments where goods arrived but failed to progress through inspection.
A representative query for outstanding receipts is:
SELECT po_header_id, line_location_id, segment1, vendor_name, need_by_date, quantity, quantity_received, quantity_accepted, quantity_rejected FROM apps.icx_po_late_receipts_v WHERE closed_code = 'OPEN' AND quantity_received < quantity - NVL(quantity_cancelled,0) AND need_by_date < SYSDATE ORDER BY need_by_date;
To flag quantities received but not yet accepted, an analyst can filter on quantity_accepted < quantity_received. The view is equally applicable to receipt-required analysis (receipt_required_flag = 'Y') and to buyer-specific workload review using the resolved agent name column.
-
View: ICX_PO_LATE_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_LATE_RECEIPTS_V, object_name:ICX_PO_LATE_RECEIPTS_V, status:VALID, product: ICX - Oracle iProcurement , description: Overdue Receipts View , implementation_dba_data: APPS.ICX_PO_LATE_RECEIPTS_V ,
-
View: ICX_PO_LATE_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_LATE_RECEIPTS_V, object_name:ICX_PO_LATE_RECEIPTS_V, status:VALID, product: ICX - Oracle iProcurement , description: Overdue Receipts View , implementation_dba_data: APPS.ICX_PO_LATE_RECEIPTS_V ,
-
PACKAGE: APPS.PO_INQ_SV
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PO_INQ_SV, status:VALID,
-
PACKAGE: APPS.PO_INQ_SV
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PO_INQ_SV, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.PO_LINE_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_LINE_TYPES, status:VALID,
-
SYNONYM: APPS.PO_DOCUMENT_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_DOCUMENT_TYPES, status:VALID,
-
SYNONYM: APPS.PO_LINE_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_LINE_TYPES, status:VALID,
-
SYNONYM: APPS.PO_RELEASES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_RELEASES, status:VALID,
-
SYNONYM: APPS.PO_DOCUMENT_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_DOCUMENT_TYPES, status:VALID,
-
VIEW: APPS.ICX_PO_LATE_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_LATE_RECEIPTS_V, object_name:ICX_PO_LATE_RECEIPTS_V, status:VALID,
-
SYNONYM: APPS.PO_RELEASES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_RELEASES, status:VALID,
-
VIEW: APPS.ICX_PO_LATE_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_LATE_RECEIPTS_V, object_name:ICX_PO_LATE_RECEIPTS_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.PO_VENDOR_CONTACTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDOR_CONTACTS, object_name:PO_VENDOR_CONTACTS, status:VALID,
-
VIEW: APPS.PO_VENDOR_CONTACTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDOR_CONTACTS, object_name:PO_VENDOR_CONTACTS, status:VALID,
-
SYNONYM: APPS.PO_LINE_LOCATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_LINE_LOCATIONS, status:VALID,
-
SYNONYM: APPS.FINANCIALS_SYSTEM_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FINANCIALS_SYSTEM_PARAMETERS, status:VALID,
-
SYNONYM: APPS.PO_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_LINES, status:VALID,
-
SYNONYM: APPS.PO_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_LINES, status:VALID,
-
SYNONYM: APPS.PO_LINE_LOCATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_LINE_LOCATIONS, status:VALID,
-
SYNONYM: APPS.FINANCIALS_SYSTEM_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FINANCIALS_SYSTEM_PARAMETERS, status:VALID,
-
SYNONYM: APPS.PO_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_HEADERS, status:VALID,
-
SYNONYM: APPS.PO_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_HEADERS, status:VALID,
-
VIEW: APPS.PO_VENDOR_SITES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_VENDOR_SITES SQLAP.PO_VENDOR_SITES, object_name:PO_VENDOR_SITES, status:VALID,
-
VIEW: APPS.PO_VENDOR_SITES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_VENDOR_SITES SQLAP.PO_VENDOR_SITES, object_name:PO_VENDOR_SITES, status:VALID,
-
VIEW: APPS.HR_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOCATIONS, object_name:HR_LOCATIONS, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_KFV
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_KFV, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_KFV
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_KFV, status:VALID,
-
VIEW: APPS.HR_LOCATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOCATIONS, object_name:HR_LOCATIONS, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
eTRM - ICX Tables and Views
12.2.2
-
eTRM - ICX Tables and Views
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - ICX Tables and Views
12.2.2
-
eTRM - ICX Tables and Views
12.1.1
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,