Search Results per_all_people_f
Overview
The POR_RCV_REQS_NAME_V view is a reporting object owned by the APPS schema within the Oracle iProcurement (ICX) product family. It exposes requisition-to-receipt information related to receiving activities in Oracle E-Business Suite, and it belongs to the same functional grouping as the POR_RCV_* family of views used by iProcurement and the receiving workflow. Its status is VALID in both Oracle EBS 12.1.1 and 12.2.2, and its structure and definition are effectively shared across these releases.
The view consolidates requisition header and line data with purchase order, purchase release, vendor, shipment, and person information, then presents a denormalized result set. The inclusion of PER_ALL_PEOPLE_F joins indicates that the view resolves human-resources person identifiers (both the requisition preparer and the requisition line "to person") to descriptive full names, which are useful for display and selection purposes. Combined with the POR_VIEW_REQS_PKG.GET_REQ_TOTAL function call, the view provides a single row per requisition/delivery context enriched with a computed total, making it suitable for iProcurement pages that display requisition demand awaiting receipt.
Underlying Base Objects
The documented referenced objects for this view include PO_REQUISITION_HEADERS, PO_REQUISITION_LINES, PO_REQ_DISTRIBUTIONS, PO_DISTRIBUTIONS, PO_HEADERS, PO_LINE_LOCATIONS, PO_RELEASES, PO_VENDORS (exposed as a view), PO_SYSTEM_PARAMETERS, OE_ORDER_HEADERS, RCV_SHIPMENT_LINES, HR_ALL_ORGANIZATION_UNITS_TL, and PER_ALL_PEOPLE_F. All are referenced through APPS synonyms.
These joins link requisition lines to their corresponding PO distributions, line locations, and PO headers so that only deliverable quantities remain visible. Filtering conditions limit results to open, approved shipments that are routed for receiving (RECEIVING_ROUTING_ID = 3) and whose shipment type is STANDARD, BLANKET, or SCHEDULED. The documented view text also includes a UNION ALL branch that sources internal sales order data from OE_ORDER_HEADERS and organization units, extending the view beyond pure purchasing to encompass internal requisitions fulfilled through order management.
Key Columns
- REQUISITION_HEADER_ID / SEGMENT1 / DESCRIPTION — identify the requisition and its document number and description.
- PREPARER_ID — the person who prepared the requisition.
- TO_PERSON_ID — the person for whom the line was requested (the recipient or deliver-to person).
- PAPF.FULL_NAME / PAPF2.FULL_NAME — resolved full names for the to-person and preparer, obtained through effective-dated lookups on
PER_ALL_PEOPLE_F. - ORDER_NUM_REL_NUM — a concatenated display value combining the PO or order number with its release number.
- PO_NUMBER / ORDER_NUMBER / PO_RELEASE_NUMBER — the purchase order, internal order, and release identifiers.
- VENDOR — the supplier or organization name associated with the source document.
- CREATION_DATE — the requisition creation timestamp.
- GET_REQ_TOTAL(...) — the result of the
POR_VIEW_REQS_PKGfunction, providing the aggregated requisition total.
Common Use Cases and Queries
Typical usage is on iProcurement pages and receiving-related reports where a user must review requisitions with outstanding quantities, display the preparer and recipient names in readable form, and identify the corresponding vendor or order. A representative query filtering to a specific preparer or recipient follows:
SELECT requisition_header_id,
segment1,
full_name,
order_num_rel_num,
vendor,
creation_date
FROM apps.por_rcv_reqs_name_v
WHERE preparer_id = :preparer_id
ORDER BY creation_date DESC;
Because the view relies on PER_ALL_PEOPLE_F effective-dated subqueries to return the latest name version, joins to additional HR data should also be filtered by EFFECTIVE_END_DATE to avoid duplicate person rows. For integration and diagnostics, the view serves as a ready-made join between purchasing and HR person references, reducing the need to reconstruct the multi-table relationship across requisitions, distributions, releases, and person records.
-
View: POR_RCV_REQS_NAME_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQS_NAME_V, object_name:POR_RCV_REQS_NAME_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_REQS_NAME_V ,
-
View: POR_RCV_REQS_NAME_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQS_NAME_V, object_name:POR_RCV_REQS_NAME_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_REQS_NAME_V ,
-
View: POR_RCV_REQS_VENDOR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQS_VENDOR_V, object_name:POR_RCV_REQS_VENDOR_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_REQS_VENDOR_V ,
-
View: POR_RCV_REQS_VENDOR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQS_VENDOR_V, object_name:POR_RCV_REQS_VENDOR_V, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.POR_RCV_REQS_VENDOR_V ,
-
View: POR_RCV_REQ_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQ_LOV_V, object_name:POR_RCV_REQ_LOV_V, status:VALID, product: ICX - Oracle iProcurement , description: The List of Value of Requester in Receive Expanded Search , implementation_dba_data: APPS.POR_RCV_REQ_LOV_V ,
-
View: POR_RCV_REQ_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQ_LOV_V, object_name:POR_RCV_REQ_LOV_V, status:VALID, product: ICX - Oracle iProcurement , description: The List of Value of Requester in Receive Expanded Search , implementation_dba_data: APPS.POR_RCV_REQ_LOV_V ,
-
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_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_VIEW_REQS_TO_APPR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_REQS_TO_APPR_V, object_name:POR_VIEW_REQS_TO_APPR_V, status:VALID, product: ICX - Oracle iProcurement , description: Orders to Approve View , implementation_dba_data: APPS.POR_VIEW_REQS_TO_APPR_V ,
-
View: POR_VIEW_REQS_TO_APPR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_REQS_TO_APPR_V, object_name:POR_VIEW_REQS_TO_APPR_V, status:VALID, product: ICX - Oracle iProcurement , description: Orders to Approve View , implementation_dba_data: APPS.POR_VIEW_REQS_TO_APPR_V ,
-
View: POR_VIEW_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_LINES_V, object_name:POR_VIEW_LINES_V, status:VALID, product: ICX - Oracle iProcurement , description: View Requisition Lines , implementation_dba_data: APPS.POR_VIEW_LINES_V ,
-
View: POR_VIEW_LINES_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_LINES_ALL_V, object_name:POR_VIEW_LINES_ALL_V, status:VALID, product: ICX - Oracle iProcurement , description: View Requisition Lines view , implementation_dba_data: APPS.POR_VIEW_LINES_ALL_V ,
-
View: POR_VIEW_LINES_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_LINES_ALL_V, object_name:POR_VIEW_LINES_ALL_V, status:VALID, product: ICX - Oracle iProcurement , description: View Requisition Lines view , implementation_dba_data: APPS.POR_VIEW_LINES_ALL_V ,
-
View: POR_VIEW_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_LINES_V, object_name:POR_VIEW_LINES_V, status:VALID, product: ICX - Oracle iProcurement , description: View Requisition Lines , implementation_dba_data: APPS.POR_VIEW_LINES_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: ICX_AP_EXPENSE_REPORTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_AP_EXPENSE_REPORTS_V, object_name:ICX_AP_EXPENSE_REPORTS_V, status:VALID, product: ICX - Oracle iProcurement , description: Employee Expense Reports Header View , implementation_dba_data: APPS.ICX_AP_EXPENSE_REPORTS_V ,
-
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: ICX_AP_EXPENSE_REPORTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_AP_EXPENSE_REPORTS_V, object_name:ICX_AP_EXPENSE_REPORTS_V, status:VALID, product: ICX - Oracle iProcurement , description: Employee Expense Reports Header View , implementation_dba_data: APPS.ICX_AP_EXPENSE_REPORTS_V ,
-
View: POR_VIEW_REQS_BY_PUBLIC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_REQS_BY_PUBLIC_V, object_name:POR_VIEW_REQS_BY_PUBLIC_V, status:VALID, product: ICX - Oracle iProcurement , description: View with unrestricted access and data feasible to be seen by all users in the system , implementation_dba_data: APPS.POR_VIEW_REQS_BY_PUBLIC_V ,
-
View: POR_VIEW_REQS_BY_PUBLIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_REQS_BY_PUBLIC_V, object_name:POR_VIEW_REQS_BY_PUBLIC_V, status:VALID, product: ICX - Oracle iProcurement , description: View with unrestricted access and data feasible to be seen by all users in the system , implementation_dba_data: APPS.POR_VIEW_REQS_BY_PUBLIC_V ,
-
View: POR_VIEW_REQS_AUTOQUERY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_REQS_AUTOQUERY_V, object_name:POR_VIEW_REQS_AUTOQUERY_V, status:VALID, product: ICX - Oracle iProcurement , description: View Requisition Autoquery , implementation_dba_data: APPS.POR_VIEW_REQS_AUTOQUERY_V ,
-
View: POR_VIEW_REQS_AUTOQUERY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_REQS_AUTOQUERY_V, object_name:POR_VIEW_REQS_AUTOQUERY_V, status:VALID, product: ICX - Oracle iProcurement , description: View Requisition Autoquery , implementation_dba_data: APPS.POR_VIEW_REQS_AUTOQUERY_V ,
-
View: POR_VIEW_HEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_HEADER_V, object_name:POR_VIEW_HEADER_V, status:VALID, product: ICX - Oracle iProcurement , description: View Requisition Header , implementation_dba_data: APPS.POR_VIEW_HEADER_V ,
-
View: POR_VIEW_REQS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_REQS_V, object_name:POR_VIEW_REQS_V, status:VALID, product: ICX - Oracle iProcurement , description: View Requisition , implementation_dba_data: APPS.POR_VIEW_REQS_V ,
-
View: POR_VIEW_HEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_HEADER_V, object_name:POR_VIEW_HEADER_V, status:VALID, product: ICX - Oracle iProcurement , description: View Requisition Header , implementation_dba_data: APPS.POR_VIEW_HEADER_V ,
-
View: POR_VIEW_REQS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_REQS_V, object_name:POR_VIEW_REQS_V, status:VALID, product: ICX - Oracle iProcurement , description: View Requisition , implementation_dba_data: APPS.POR_VIEW_REQS_V ,
-
View: POR_VIEW_HEADER_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_HEADER_ALL_V, object_name:POR_VIEW_HEADER_ALL_V, status:VALID, product: ICX - Oracle iProcurement , description: View Requsition Header view , implementation_dba_data: APPS.POR_VIEW_HEADER_ALL_V ,
-
View: POR_VIEW_HEADER_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_HEADER_ALL_V, object_name:POR_VIEW_HEADER_ALL_V, status:VALID, product: ICX - Oracle iProcurement , description: View Requsition Header view , implementation_dba_data: APPS.POR_VIEW_HEADER_ALL_V ,
-
View: POR_VIEW_REQS_BY_APPR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_REQS_BY_APPR_V, object_name:POR_VIEW_REQS_BY_APPR_V, status:VALID, product: ICX - Oracle iProcurement , description: Orders That I Approved View , implementation_dba_data: APPS.POR_VIEW_REQS_BY_APPR_V ,
-
View: POR_VIEW_REQS_BY_PRIVATE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_REQS_BY_PRIVATE_V, object_name:POR_VIEW_REQS_BY_PRIVATE_V, status:VALID, product: ICX - Oracle iProcurement , description: View restricted to original and subsequent owners of document , implementation_dba_data: APPS.POR_VIEW_REQS_BY_PRIVATE_V ,
-
View: POR_VIEW_REQS_BY_APPR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_REQS_BY_APPR_V, object_name:POR_VIEW_REQS_BY_APPR_V, status:VALID, product: ICX - Oracle iProcurement , description: Orders That I Approved View , implementation_dba_data: APPS.POR_VIEW_REQS_BY_APPR_V ,
-
View: POR_VIEW_REQS_BY_PRIVATE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_REQS_BY_PRIVATE_V, object_name:POR_VIEW_REQS_BY_PRIVATE_V, status:VALID, product: ICX - Oracle iProcurement , description: View restricted to original and subsequent owners of document , implementation_dba_data: APPS.POR_VIEW_REQS_BY_PRIVATE_V ,
-
View: POR_VIEW_REQS_BY_PURCHASING_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_REQS_BY_PURCHASING_V, object_name:POR_VIEW_REQS_BY_PURCHASING_V, status:VALID, product: ICX - Oracle iProcurement , description: This view access is restricted to the document owner, subsequent approvers and those individuals defined as buyers , implementation_dba_data: APPS.POR_VIEW_REQS_BY_PURCHASING_V ,
-
View: POR_VIEW_REQS_BY_PURCHASING_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_REQS_BY_PURCHASING_V, object_name:POR_VIEW_REQS_BY_PURCHASING_V, status:VALID, product: ICX - Oracle iProcurement , description: This view access is restricted to the document owner, subsequent approvers and those individuals defined as buyers , implementation_dba_data: APPS.POR_VIEW_REQS_BY_PURCHASING_V ,
-
View: POR_VIEW_REQS_BY_HIERARCHY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_REQS_BY_HIERARCHY_V, object_name:POR_VIEW_REQS_BY_HIERARCHY_V, status:VALID, product: ICX - Oracle iProcurement , description: View restricted to document owner and to those in relevant approval and security hierarchy , implementation_dba_data: APPS.POR_VIEW_REQS_BY_HIERARCHY_V ,
-
View: POR_VIEW_REQS_BY_HIERARCHY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_VIEW_REQS_BY_HIERARCHY_V, object_name:POR_VIEW_REQS_BY_HIERARCHY_V, status:VALID, product: ICX - Oracle iProcurement , description: View restricted to document owner and to those in relevant approval and security hierarchy , implementation_dba_data: APPS.POR_VIEW_REQS_BY_HIERARCHY_V ,
-
View: ICX_POR_REQ_ACTIVE_CONTRACTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_POR_REQ_ACTIVE_CONTRACTS, object_name:ICX_POR_REQ_ACTIVE_CONTRACTS, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.ICX_POR_REQ_ACTIVE_CONTRACTS ,
-
View: ICX_POR_REQ_ACTIVE_CONTRACTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_POR_REQ_ACTIVE_CONTRACTS, object_name:ICX_POR_REQ_ACTIVE_CONTRACTS, status:VALID, product: ICX - Oracle iProcurement , implementation_dba_data: APPS.ICX_POR_REQ_ACTIVE_CONTRACTS ,