Search Results primary_uom_class
Overview
POR_RCV_REQUESTOR_V is a view owned by the Oracle iProcurement (ICX) module. As documented in ETRM, its stated purpose is to present receiving-related purchasing data sorted or organized by requester, supporting the iProcurement receiving flow. The name prefix POR aligns it with the Purchasing receive/receiving family of objects, and the suffix REQUESTOR_V indicates it exposes a requester-centric projection of receipt-eligible supply.
The view returns one row per outstanding purchase distribution that still has quantity to receive: specifically, it filters to distributions where DELIVER_TO_PERSON_ID is populated and where (QUANTITY_ORDERED - QUANTITY_DELIVERED - QUANTITY_CANCELLED) > 0. This makes it a candidate-supply view for the "Receive Items" workflow, where a user is shown goods expected against their requested orders. Note that ETRM records the object as not implemented in the documented database and lists no documented base objects, so the definition below is derived from the embedded view text rather than from a live deployment.
Underlying Base Objects
Although ETRM lists no documented referenced base objects, the view text shows a ten-table join across the Purchasing and HR schema:
PO_DISTRIBUTIONS(POD) — the driving table; supplies the deliver-to person, ordered, delivered and cancelled quantities.PER_PEOPLE_F(PPF) — resolves the requester name; joined on the latest effective record (EFFECTIVE_END_DATE = (SELECT MAX(...))).PO_LINES(POL),PO_LINE_LOCATIONS(POLL),PO_HEADERS(POH),PO_RELEASES(POR) — the purchase order, line, shipment and release hierarchy.PO_VENDORS(POV),PO_VENDOR_SITES(POVS) — supplier name and site.MTL_UNITS_OF_MEASURE(MUM) — unit of measure class.PO_LOOKUP_CODES(PLC) — joined in the definition, though not referenced in the select list.
Key Columns
The view exposes a broad record suitable for a receiving list page. Notable columns include:
- Requester:
REQUESTOR_ID(fromDELIVER_TO_PERSON_ID),REQUESTER(full name). - Document identifiers:
PO_HEADER_ID,PO_NUMBER,PO_LINE_ID,PO_LINE_NUMBER,PO_LINE_LOCATION_ID,PO_SHIPMENT_NUMBER,PO_RELEASE_NUMBER, and the concatenatedPO_NUM_REL_NUM. - Requisition columns:
REQ_HEADER_ID,REQ_NUMBERandREQ_LINE_IDare all returned asNULL/TO_NUMBER(NULL)placeholders. This is significant for the searched term req_line_id: the column exists in the projection but carries no data, so querying it will not surface requisition linkage from this view. - Item and quantity:
ITEM_ID,ITEM_DESCRIPTION(truncated to 240 characters),PRIMARY_UOM,PRIMARY_UOM_CLASS,ORDERED_QTY,QUANTITY_DELIVERED,EXPECTED_RECEIPT_QTY. - Supplier and destination:
VENDOR_ID,SOURCE,VENDOR_SITE_ID,SUPPLIER_SITE,SHIP_TO_ORGANIZATION_ID,SHIP_TO_LOCATION_ID. - Dates and accounting:
NEED_BY_DATE,PROMISED_DATE,EXPECTED_RECEIPT_DATE(NVL(PROMISED_DATE, NEED_BY_DATE)),RECEIPT_DATE(set toSYSDATE), andUSSGL_TRANSACTION_CODE.
Common Use Cases and Queries
The primary use case is presenting a requester's pending receipts. A typical query lists outstanding supply grouped by person:
SELECT requestor, po_number, po_line_number, shipment_num,
item_description, expected_receipt_qty, ordered_uom,
expected_receipt_date, source
FROM por_rcv_requestor_v
WHERE requestor_id = :person_id
ORDER BY expected_receipt_date, po_number;
Because REQ_LINE_ID is always null here, joining back to requisition tables is required if requisition context is needed. A filtered query by supplier or need-by window is equally common:
SELECT po_num_rel_num, item_description, quantity_delivered,
expected_receipt_qty
FROM por_rcv_requestor_v
WHERE vendor_id = :vendor_id
AND need_by_date <= SYSDATE + 7;
The view is best treated as a read-only reporting source for outstanding receipt demand by requester, rather than as an integration interface for requisition linkage.
-
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_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_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_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.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_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_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_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_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_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_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_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_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_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_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_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 ,
-
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_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_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 ,