Search Results po_releases
Overview
PO_DOCUMENT_HEADERS_VIEW is an APPS-owned database view in the Oracle E-Business Suite Purchasing (PO) module. It consolidates header-level information from three distinct purchasing entities — purchase requisitions, purchase orders, and purchase order releases — into a single, uniformly structured result set. The view is defined as the UNION of three SELECT statements, each sourced from a different base table, allowing reporting tools, forms, and integration interfaces to retrieve document header data across the entire procurement document lifecycle without joining each source table individually.
Because purchase orders, blanket agreements, contracts, and their releases are all stored in the same PO_HEADERS / PO_RELEASES structures while requisitions reside in PO_REQUISITION_HEADERS, the view provides a normalized projection that abstracts these physical differences. This makes it particularly valuable for cross-document reporting and for user-facing inquiries that must present a unified list of purchasing documents.
Underlying Base Objects
The view is defined over the following documented base objects:
- PO_REQUISITION_HEADERS — supplies requisition header rows in the first UNION branch.
- PO_HEADERS — supplies purchase order, blanket, contract, and planned order header rows in the second UNION branch.
- PO_RELEASES — supplies release header rows in the third UNION branch; the release segment is concatenated as PO_HEADERS.SEGMENT1 || '-' || PO_RELEASES.RELEASE_NUM.
- PO_DOCUMENT_TYPES_ALL_B and PO_DOCUMENT_TYPES_ALL_TL — provide the translated document type name (TYPE_NAME) and enforce the correct document type/subtype mapping for each branch. The _TL join is filtered by USERENV('LANG') and ORG_ID.
- PO_EMPLOYEES_SV — a PL/SQL package whose GET_EMP_NAME function resolves the preparer or agent name from the preparer/agent ID.
- PO_HEADERS_ALL — referenced as part of the PO_HEADERS synonym chain for the underlying header data.
Each UNION branch reconciles the source table against the document types setup tables, ensuring that only valid document type/subtype combinations are returned.
Key Columns
The view projects a common set of columns across all three branches:
- Document identifier — the primary key of the source record (REQUISITION_HEADER_ID, PO_HEADER_ID, or PO_RELEASE_ID).
- Document category — a literal value of 'REQUISITION', 'RELEASE', or a type-derived code ('PO' or 'PA') that classifies the row.
- Document type / subtype — the type lookup code (for example STANDARD, BLANKET, CONTRACT, PLANNED) and the derived document type code.
- SEGMENT1 — the document number; for releases this is the concatenated PO number and release number.
- REVISION_NUM — the revision, defaulted to 0 via NVL where null; requisitions carry a TO_NUMBER('0') placeholder.
- TYPE_NAME — the translated document type description from PO_DOCUMENT_TYPES_ALL_TL.
- Preparer/agent name and ID — resolved through PO_EMPLOYEES_SV.GET_EMP_NAME.
- CREATION_DATE, DESCRIPTION/COMMENTS, NOTE_TO_AUTHORIZER — descriptive attributes.
- ORG_ID — the operating unit, used throughout to scope the document type setup joins.
Common Use Cases and Queries
The view is commonly used to drive unified document searches, dashboards, and integration extracts. A user searching for "po_releases" will find that releases appear here alongside their parent purchase orders, enabling a single query to return both.
Example — list all document headers for an operating unit:
- SELECT document_category, segment1, type_name, preparer_name, creation_date FROM po_document_headers_view WHERE org_id = :org_id ORDER BY creation_date DESC;
Example — retrieve all releases with their parent PO number encoded in SEGMENT1:
- SELECT segment1, type_name, agent_name FROM po_document_headers_view WHERE document_category = 'RELEASE';
Example — locate requisitions by preparer:
- SELECT segment1, description, preparer_name FROM po_document_headers_view WHERE document_category = 'REQUISITION' AND preparer_id = :preparer_id;
Because it performs UNION operations across large header tables, queries should always filter on ORG_ID, CREATION_DATE, or document identifiers to control execution cost. The view is read-only and intended for inquiry and reporting rather than transactional updates.
-
View: PO_DOCUMENT_HEADERS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_DOCUMENT_HEADERS_VIEW, object_name:PO_DOCUMENT_HEADERS_VIEW, status:VALID, product: PO - Purchasing , description: Header information in PO_HEADERS, PO_RELEASES, and PO_REQUISITION_HEADERS , implementation_dba_data: APPS.PO_DOCUMENT_HEADERS_VIEW ,
-
View: PO_DOCUMENT_HEADERS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_DOCUMENT_HEADERS_VIEW, object_name:PO_DOCUMENT_HEADERS_VIEW, status:VALID, product: PO - Purchasing , description: Header information in PO_HEADERS, PO_RELEASES, and PO_REQUISITION_HEADERS , implementation_dba_data: APPS.PO_DOCUMENT_HEADERS_VIEW ,
-
View: PO_RELEASES_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_RELEASES_ALL_V, object_name:PO_RELEASES_ALL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_RELEASES_ALL_V ,
-
View: PO_RELEASES_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_RELEASES_ALL_V, object_name:PO_RELEASES_ALL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_RELEASES_ALL_V ,
-
View: PO_RELEASES_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_RELEASES_VAL_V, object_name:PO_RELEASES_VAL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_RELEASES_VAL_V ,
-
View: PO_RELEASES_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_RELEASES_VAL_V, object_name:PO_RELEASES_VAL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_RELEASES_VAL_V ,
-
View: PO_HEADERS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_VIEW, object_name:PO_HEADERS_VIEW, status:VALID, product: PO - Purchasing , description: Document headers , implementation_dba_data: APPS.PO_HEADERS_VIEW ,
-
View: PO_TAX_HEADERS_DETAIL_V
12.1.1
product: PO - Purchasing , implementation_dba_data: Not implemented in this database ,
-
View: PO_TAX_HEADERS_DETAIL_V
12.2.2
product: PO - Purchasing , implementation_dba_data: Not implemented in this database ,
-
View: PO_HEADERS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_VIEW, object_name:PO_HEADERS_VIEW, status:VALID, product: PO - Purchasing , description: Document headers , implementation_dba_data: APPS.PO_HEADERS_VIEW ,
-
View: PO_PURCHASE_ORDER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_PURCHASE_ORDER_V, object_name:PO_PURCHASE_ORDER_V, status:VALID, product: PO - Purchasing , description: Purchase order , implementation_dba_data: APPS.PO_PURCHASE_ORDER_V ,
-
View: PO_PURCHASE_ORDER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_PURCHASE_ORDER_V, object_name:PO_PURCHASE_ORDER_V, status:VALID, product: PO - Purchasing , description: Purchase order , implementation_dba_data: APPS.PO_PURCHASE_ORDER_V ,
-
View: RCV_RECEIPTS_PRINT_PO
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_PO, object_name:RCV_RECEIPTS_PRINT_PO, status:VALID, product: PO - Purchasing , description: Print view of receipts , implementation_dba_data: APPS.RCV_RECEIPTS_PRINT_PO ,
-
View: RCV_RECEIPTS_PRINT_PO
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RECEIPTS_PRINT_PO, object_name:RCV_RECEIPTS_PRINT_PO, status:VALID, product: PO - Purchasing , description: Print view of receipts , implementation_dba_data: APPS.RCV_RECEIPTS_PRINT_PO ,
-
View: PO_REL_TAX_LINES_SUMMARY_V
12.1.1
product: PO - Purchasing , implementation_dba_data: Not implemented in this database ,
-
View: PO_AP_RECEIPT_MATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_AP_RECEIPT_MATCH_V SQLAP.PO_AP_RECEIPT_MATCH_V, object_name:PO_AP_RECEIPT_MATCH_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_AP_RECEIPT_MATCH_V ,
-
View: PO_REL_TAX_LINES_SUMMARY_V
12.2.2
product: PO - Purchasing , implementation_dba_data: Not implemented in this database ,
-
View: PO_TAX_CODES_SUMMARY_V
12.2.2
product: PO - Purchasing , implementation_dba_data: Not implemented in this database ,
-
View: PO_TAX_DISTRIBUTIONS_DETAIL_V
12.2.2
product: PO - Purchasing , implementation_dba_data: Not implemented in this database ,
-
View: PO_TAX_CODES_SUMMARY_V
12.1.1
product: PO - Purchasing , implementation_dba_data: Not implemented in this database ,
-
View: PO_AP_RECEIPT_MATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_AP_RECEIPT_MATCH_V SQLAP.PO_AP_RECEIPT_MATCH_V, object_name:PO_AP_RECEIPT_MATCH_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_AP_RECEIPT_MATCH_V ,
-
View: RCV_AEL_SL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_AEL_SL_V, object_name:RCV_AEL_SL_V, status:VALID, product: PO - Purchasing , description: PO view accounting View , implementation_dba_data: APPS.RCV_AEL_SL_V ,
-
View: RCV_AEL_SL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_AEL_SL_MRC_V, object_name:RCV_AEL_SL_MRC_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.RCV_AEL_SL_MRC_V ,
-
View: RCV_AEL_SL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_AEL_SL_V, object_name:RCV_AEL_SL_V, status:VALID, product: PO - Purchasing , description: PO view accounting View , implementation_dba_data: APPS.RCV_AEL_SL_V ,
-
View: PO_TAX_DISTRIBUTIONS_DETAIL_V
12.1.1
product: PO - Purchasing , implementation_dba_data: Not implemented in this database ,
-
View: RCV_AEL_SL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_AEL_SL_MRC_V, object_name:RCV_AEL_SL_MRC_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.RCV_AEL_SL_MRC_V ,
-
View: PO_RELEASES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_RELEASES_V, object_name:PO_RELEASES_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_RELEASES_V ,
-
View: PO_RELEASES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_RELEASES_V, object_name:PO_RELEASES_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_RELEASES_V ,
-
View: RCV_CONFIRM_RECEIPT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_CONFIRM_RECEIPT_V, object_name:RCV_CONFIRM_RECEIPT_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_CONFIRM_RECEIPT_V ,
-
View: RCV_CONFIRM_RECEIPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_CONFIRM_RECEIPT_V, object_name:RCV_CONFIRM_RECEIPT_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_CONFIRM_RECEIPT_V ,
-
View: RCV_ENTER_RECEIPTS_PO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_PO_V, object_name:RCV_ENTER_RECEIPTS_PO_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_PO_V ,
-
View: RCV_ENTER_RECEIPTS_PO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_PO_V, object_name:RCV_ENTER_RECEIPTS_PO_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_PO_V ,
-
View: PO_HEADERS_INQ_REL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_INQ_REL_V, object_name:PO_HEADERS_INQ_REL_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_HEADERS_INQ_REL_V ,
-
View: PO_HEADERS_INQ_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_INQ_REL_V, object_name:PO_HEADERS_INQ_REL_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_HEADERS_INQ_REL_V ,
-
View: RCV_ENTER_RECEIPTS_ASN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_ASN_V, object_name:RCV_ENTER_RECEIPTS_ASN_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_ASN_V ,
-
View: RCV_ENTER_RECEIPTS_ASN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_ASN_V, object_name:RCV_ENTER_RECEIPTS_ASN_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_ENTER_RECEIPTS_ASN_V ,
-
View: PO_HEADERS_PRINT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_PRINT, object_name:PO_HEADERS_PRINT, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_HEADERS_PRINT ,
-
View: PO_HEADERS_PRINT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_PRINT, object_name:PO_HEADERS_PRINT, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_HEADERS_PRINT ,
-
View: RCV_VRC_TXS_VENDINT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_VENDINT_V, object_name:RCV_VRC_TXS_VENDINT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_VENDINT_V ,
-
View: RCV_VRC_TXS_VENDINT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_VENDINT_V, object_name:RCV_VRC_TXS_VENDINT_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_VENDINT_V ,
-
View: PO_WF_NOTIFICATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_WF_NOTIFICATIONS_V, object_name:PO_WF_NOTIFICATIONS_V, status:VALID, product: PO - Purchasing , description: Information about purchase orders, releases and requisitions that have outstanding notifications , implementation_dba_data: APPS.PO_WF_NOTIFICATIONS_V ,
-
View: PO_WF_NOTIFICATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_WF_NOTIFICATIONS_V, object_name:PO_WF_NOTIFICATIONS_V, status:VALID, product: PO - Purchasing , description: Information about purchase orders, releases and requisitions that have outstanding notifications , implementation_dba_data: APPS.PO_WF_NOTIFICATIONS_V ,
-
View: RCV_MSL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_MSL_V, object_name:RCV_MSL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_MSL_V ,
-
View: RCV_MSL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_MSL_V, object_name:RCV_MSL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_MSL_V ,
-
View: RCV_VIEW_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VIEW_INTERFACE_V, object_name:RCV_VIEW_INTERFACE_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_VIEW_INTERFACE_V ,
-
View: RCV_VIEW_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VIEW_INTERFACE_V, object_name:RCV_VIEW_INTERFACE_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.RCV_VIEW_INTERFACE_V ,
-
View: RCV_VRC_TXS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_V, object_name:RCV_VRC_TXS_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_V ,
-
View: RCV_VRC_TXS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_V, object_name:RCV_VRC_TXS_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_VRC_TXS_V ,
-
View: PO_HEADERS_INQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_INQ_V, object_name:PO_HEADERS_INQ_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_HEADERS_INQ_V ,
-
View: RCV_CORRECTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_CORRECTIONS_V, object_name:RCV_CORRECTIONS_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.RCV_CORRECTIONS_V ,