Search Results ordered_uom
Overview
POR_CONFIRM_INTERNAL_RECEIPT_V is a database view owned by the APPS schema and shipped as part of the Oracle iProcurement (ICX) product family in Oracle E-Business Suite 12.1.1 and 12.2.2. Its status is VALID in the ETRM repository. The view consolidates information required by the iProcurement internal requisition receiving flow, exposing quantities, need-by dates, shipment references, and unit-of-measure attributes that the receipt confirmation UI and its underlying validation logic depend on.
The view is not a standalone reporting object; it is a runtime dependency of the iProcurement confirm-receipt page, which is invoked when a requester receives goods against an internal (inventory-sourced) requisition. Because internal requisitions source material from another inventory organization rather than from an external supplier, the view joins requisition, order management, receiving, and organization data to produce a single row per eligible requisition line. Practically, it functions as a projection layer that presents the iProcurement receipt confirmation screen with the values it needs without forcing the page to query the base transaction tables directly.
Underlying Base Objects
The view is defined over a set of synonyms and packaged APIs documented in ETRM. The base synonyms include PO_REQUISITION_LINES and PO_REQUISITION_HEADERS, which supply the requisition line detail and header segment used to link to the sales order; OE_ORDER_HEADERS and OE_ORDER_LINES, which provide the internal sales order number and its originating system references; RCV_SHIPMENT_HEADERS and RCV_SHIPMENT_LINES, which link the requisition line to its shipment; MTL_UNITS_OF_MEASURE, which supplies the UOM class; HR_ALL_ORGANIZATION_UNITS_TL, which supplies the destination organization name in the user's language; and PO_SYSTEM_PARAMETERS, which supplies the order source identifier.
Two packaged objects are referenced: POR_RCV_TRANSACTION_SV, invoked through GET_SHIPMENT_NUM to derive the shipment number for the requisition line, and PO_CORE_S2, referenced through PO_SYSTEM_PARAMETERS processing. Joins are largely inner joins keyed on requisition line, order line, and shipment line identifiers, with outer joins applied to the unit-of-measure and organization name lookups. The driving filter restricts rows to internal requisitions whose delivered quantity has not exhausted the ordered quantity.
Key Columns
- ORDERED_UOM — the unit of measure on the requisition line, sourced as PORL.UNIT_MEAS_LOOKUP_CODE. This is the column that answers the common "ordered_uom" search, and it also appears as PRIMARY_UOM with the same source value.
- ORDERED_QTY — the full ordered quantity from PO_REQUISITION_LINES.QUANTITY.
- EXPECTED_RECEIPT_QTY — the outstanding quantity, computed as QUANTITY minus cancelled minus delivered; only rows with a positive balance are returned.
- QUANTITY_DELIVERED — the quantity already received against the line.
- REQUESTOR_ID — the requisition line's TO_PERSON_ID.
- TO_ORGANIZATION_ID and SHIP_TO_LOCATION_ID — destination organization and deliver-to location identifiers.
- NEED_BY_DATE / EXPECTED_RECEIPT_DATE — both sourced from PORL.NEED_BY_DATE.
- PO_NUM_REL_NUM / ORDER_NUMBER — the internal sales order number, cast to character for the relation column.
- UOM_CLASS — the class of the ordered UOM from MTL_UNITS_OF_MEASURE.
- SHIPMENT_NUM — derived by POR_RCV_TRANSACTION_SV.GET_SHIPMENT_NUM with source type 'REQ'.
Common Use Cases and Queries
The primary use case is the iProcurement internal receipt confirmation page, which reads eligible lines before the requester posts the receipt. Secondary uses include reconciliation reports that compare ordered versus delivered quantities on internal requisitions and diagnostics that trace a requisition line to its shipment and sales order.
A typical query filtering on the searched column is:
SELECT ORDERED_QTY, ORDERED_UOM, QUANTITY_DELIVERED, EXPECTED_RECEIPT_QTY FROM APPS.POR_CONFIRM_INTERNAL_RECEIPT_V WHERE ORDERED_UOM = :p_uom;
To review all outstanding internal receipts for a destination organization:
SELECT TO_ORGANIZATION_ID, ITEM_ID, ORDERED_QTY, QUANTITY_DELIVERED, NEED_BY_DATE FROM APPS.POR_CONFIRM_INTERNAL_RECEIPT_V WHERE TO_ORGANIZATION_ID = :p_org ORDER BY NEED_BY_DATE;
Because the view returns a broad projection of requisition, order, and shipment attributes, ad-hoc queries should always restrict by organization, item, or requisition line to avoid full scans across the joined base objects.
-
View: POR_CONFIRM_INTERNAL_RECEIPT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_CONFIRM_INTERNAL_RECEIPT_V, object_name:POR_CONFIRM_INTERNAL_RECEIPT_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_CONFIRM_INTERNAL_RECEIPT_V ,
-
View: POR_RCV_INTERNAL_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_INTERNAL_ITEMS_V, object_name:POR_RCV_INTERNAL_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_INTERNAL_ITEMS_V ,
-
View: POR_CONFIRM_INTERNAL_RECEIPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_CONFIRM_INTERNAL_RECEIPT_V, object_name:POR_CONFIRM_INTERNAL_RECEIPT_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_CONFIRM_INTERNAL_RECEIPT_V ,
-
View: POR_RCV_INTERNAL_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_INTERNAL_ITEMS_V, object_name:POR_RCV_INTERNAL_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_INTERNAL_ITEMS_V ,
-
View: POR_RCV_REQ_REQUESTOR_V
12.2.2
product: ICX - Oracle iProcurement , description: View for receiving items sorted by requester , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_REQ_REQUESTOR_V
12.1.1
product: ICX - Oracle iProcurement , description: View for receiving items sorted by requester , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_REQ_NUM_V
12.1.1
product: ICX - Oracle iProcurement , description: View for receiving items sorted by requisition number , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_REQ_NUM_V
12.2.2
product: ICX - Oracle iProcurement , description: View for receiving items sorted by requisition number , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_INTERNAL_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_INTERNAL_RECEIPTS_V, object_name:POR_RCV_INTERNAL_RECEIPTS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_INTERNAL_RECEIPTS_V ,
-
View: POR_RCV_CORRECT_RECEIPTS_V
12.1.1
product: ICX - Oracle iProcurement , description: View for querying receipts that can be corrected or adjusted , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_NEW_CORRECT_RECEIPTS_V
12.2.2
product: ICX - Oracle iProcurement , description: Correct receipt view , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_NEW_CORRECT_RECEIPTS_V
12.1.1
product: ICX - Oracle iProcurement , description: Correct receipt view , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_SEARCH_RECEIPTS_V
12.2.2
product: ICX - Oracle iProcurement , description: View receipts View , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_CORRECT_RECEIPTS_V
12.2.2
product: ICX - Oracle iProcurement , description: View for querying receipts that can be corrected or adjusted , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_SUPPL_V
12.1.1
product: ICX - Oracle iProcurement , description: View for querying items, to receive, searched by supplier. , implementation_dba_data: Not implemented in this database ,
-
View: POR_VIEW_RECEIPTS_ORDER_V
12.1.1
product: ICX - Oracle iProcurement , description: View for querying receipts that can be corrected or adjusted. This view is optimized for querying by order number. , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_SEARCH_RECEIPTS_V
12.1.1
product: ICX - Oracle iProcurement , description: View receipts View , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_INTERNAL_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_INTERNAL_RECEIPTS_V, object_name:POR_RCV_INTERNAL_RECEIPTS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_INTERNAL_RECEIPTS_V ,
-
View: POR_RCV_SUPPL_V
12.2.2
product: ICX - Oracle iProcurement , description: View for querying items, to receive, searched by supplier. , implementation_dba_data: Not implemented in this database ,
-
View: POR_VIEW_RECEIPTS_V
12.1.1
product: ICX - Oracle iProcurement , description: View for querying receipts that can be corrected or adjusted , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_REQ_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQ_ITEMS_V, object_name:POR_RCV_REQ_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_REQ_ITEMS_V ,
-
View: POR_RCV_REQ_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQ_ITEMS_V, object_name:POR_RCV_REQ_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_REQ_ITEMS_V ,
-
View: POR_RCV_SHIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_SHIPMENTS_V, object_name:POR_RCV_SHIPMENTS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_SHIPMENTS_V ,
-
View: POR_VIEW_RECEIPTS_ORDER_V
12.2.2
product: ICX - Oracle iProcurement , description: View for querying receipts that can be corrected or adjusted. This view is optimized for querying by order number. , implementation_dba_data: Not implemented in this database ,
-
View: POR_VIEW_RECEIPTS_V
12.2.2
product: ICX - Oracle iProcurement , description: View for querying receipts that can be corrected or adjusted , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_SHIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_SHIPMENTS_V, object_name:POR_RCV_SHIPMENTS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_SHIPMENTS_V ,
-
View: POR_RCV_ALL_ITEMS_V
12.2.2
product: ICX - Oracle iProcurement , description: View for all items that can be received , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_ALL_ITEMS_V
12.1.1
product: ICX - Oracle iProcurement , description: View for all items that can be received , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_MY_ITEMS_V
12.2.2
product: ICX - Oracle iProcurement , description: View to query receiving on 'My Items to Receive' , implementation_dba_data: Not implemented in this database ,
-
View: POR_RECEIVE_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RECEIVE_ORDERS_V, object_name:POR_RECEIVE_ORDERS_V, status:VALID, product: ICX - Oracle iProcurement , description: Items available for receiving , implementation_dba_data: APPS.POR_RECEIVE_ORDERS_V ,
-
View: POR_RCV_MY_ITEMS_V
12.1.1
product: ICX - Oracle iProcurement , description: View to query receiving on 'My Items to Receive' , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_ORD_REQUESTER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_ORD_REQUESTER_V, object_name:POR_RCV_ORD_REQUESTER_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_ORD_REQUESTER_V ,
-
View: POR_RECEIVE_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RECEIVE_ORDERS_V, object_name:POR_RECEIVE_ORDERS_V, status:VALID, product: ICX - Oracle iProcurement , description: Items available for receiving , implementation_dba_data: APPS.POR_RECEIVE_ORDERS_V ,
-
View: POR_RCV_RETURN_TO_VENDOR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_RETURN_TO_VENDOR_V, object_name:POR_RCV_RETURN_TO_VENDOR_V, status:VALID, product: ICX - Oracle iProcurement , description: View for querying items to be returned to the supplier (vendor) , implementation_dba_data: APPS.POR_RCV_RETURN_TO_VENDOR_V ,
-
View: POR_RCV_ORD_REQUESTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_ORD_REQUESTER_V, object_name:POR_RCV_ORD_REQUESTER_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_ORD_REQUESTER_V ,
-
View: POR_RCV_RETURN_TO_VENDOR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_RETURN_TO_VENDOR_V, object_name:POR_RCV_RETURN_TO_VENDOR_V, status:VALID, product: ICX - Oracle iProcurement , description: View for querying items to be returned to the supplier (vendor) , implementation_dba_data: APPS.POR_RCV_RETURN_TO_VENDOR_V ,
-
View: POR_RCV_CORRECT_RTV_V
12.1.1
product: ICX - Oracle iProcurement , description: View for querying items which need to be returned to the supplier(vendor) and the receipts to be corrected or adjusted , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_CORRECT_RTV_V
12.2.2
product: ICX - Oracle iProcurement , description: View for querying items which need to be returned to the supplier(vendor) and the receipts to be corrected or adjusted , implementation_dba_data: Not implemented in this database ,
-
View: POR_RCV_ALL_ITEMS_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_ALL_ITEMS_V1, object_name:POR_RCV_ALL_ITEMS_V1, status:VALID, product: ICX - Oracle iProcurement , description: View for all items that can be received , implementation_dba_data: APPS.POR_RCV_ALL_ITEMS_V1 ,
-
View: POR_RCV_ALL_ITEMS_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_ALL_ITEMS_V1, object_name:POR_RCV_ALL_ITEMS_V1, status:VALID, product: ICX - Oracle iProcurement , description: View for all items that can be received , implementation_dba_data: APPS.POR_RCV_ALL_ITEMS_V1 ,
-
View: POR_RCV_PURCHASE_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_PURCHASE_RECEIPTS_V, object_name:POR_RCV_PURCHASE_RECEIPTS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_PURCHASE_RECEIPTS_V ,
-
View: POR_RCV_REQ_PURCH_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQ_PURCH_RECEIPTS_V, object_name:POR_RCV_REQ_PURCH_RECEIPTS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_REQ_PURCH_RECEIPTS_V ,
-
View: POR_RCV_REQ_PURCH_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQ_PURCH_RECEIPTS_V, object_name:POR_RCV_REQ_PURCH_RECEIPTS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_REQ_PURCH_RECEIPTS_V ,
-
View: POR_RCV_PURCHASE_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_PURCHASE_RECEIPTS_V, object_name:POR_RCV_PURCHASE_RECEIPTS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_PURCHASE_RECEIPTS_V ,
-
View: POR_RCV_PURCHASE_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_PURCHASE_ITEMS_V, object_name:POR_RCV_PURCHASE_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_PURCHASE_ITEMS_V ,
-
View: POR_RCV_PURCHASE_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_PURCHASE_ITEMS_V, object_name:POR_RCV_PURCHASE_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_PURCHASE_ITEMS_V ,