Search Results po_rfq_headers_print
Overview
PO_RFQ_HEADERS_PRINT is an APPS-owned database view in the Oracle E-Business Suite Purchasing (PO) module. Its documented purpose is to provide a print-oriented projection of Request for Quotation (RFQ) header data. Unlike the transactional tables that store RFQ definitions, this view denormalizes header, supplier, site, contact, agent, terms, and lookup information into a single flat result set intended for formatted output — typically a BI Publisher or concurrent-program report that renders printed RFQ documents for distribution to suppliers.
The view is relevant in both 12.1.1 and 12.2.2. In 12.2.2 it retains the same APPS owner and VALID status; the primary difference across releases is the underlying multi-org and security plumbing exposed through the referenced packages (FND_GLOBAL, FND_PROFILE, HR_GENERAL, HR_SECURITY). The view is not a public API and should be treated strictly as a read-only reporting object. Because it filters on print flags and header status, it returns only RFQs currently eligible for printing, not the entire RFQ population.
Underlying Base Objects
The view joins a fixed set of documented base objects. PO_HEADERS supplies the RFQ header itself (segment1, revision, dates, notes, attributes). PO_RFQ_VENDORS links each RFQ to its invited suppliers and carries the print flag and sequence number that drive filtering and ordering. Supplier master data is drawn from PO_VENDORS, PO_VENDOR_SITES_ALL, and PO_VENDOR_CONTACTS, providing names, addresses, phone numbers, and contact details. HR_LOCATIONS appears twice (aliased HR1 and HR2) to resolve bill-to and ship-to addresses, while HR_EMPLOYEES supplies the buyer/agent name. AP_TERMS supplies payment terms; PO_LOOKUP_CODES resolves ship-via and reply-method display values. Supporting packages and synonyms include FND_GLOBAL, FND_PROFILE, FND_LOOKUP_VALUES, HR_GENERAL, HR_PERSON_NAME, HR_SECURITY, and AP_TERMS.
The join is driven by PRV.PRINT_FLAG = 'Y' and POH.STATUS_LOOKUP_CODE IN ('A','P'), so only active or approved RFQs flagged for printing are returned. Supplier site joins are constrained by ORG_ID to honor the operating unit of the header.
Key Columns
- SEGMENT1, REVISION_NUM, PO_HEADER_ID, ORG_ID — RFQ identity and operating unit.
- RFQ_CLOSE_DATE, REPLY_DATE, START_DATE, END_DATE — key RFQ lifecycle dates.
- NOTE_TO_VENDOR — the header-level instruction text printed on the RFQ.
- VENDOR_NAME, VENDOR_SITE segment1, CUSTOMER_NUM — supplier identification.
- ADDRESS_LINE1/2/3, CITY, STATE, ZIP, COUNTRY — supplier site address used for the "To" block.
- HR1.POSTAL_CODE, HR2.POSTAL_CODE, TOWN_OR_CITY — bill-to and ship-to address details; these correspond to the postal-code values users locate when searching for vendor_postal_code-style fields.
- FIRST_NAME, LAST_NAME (agent) — the buyer responsible for the RFQ.
- ATTRIBUTE1 through ATTRIBUTE15 — descriptive flexfield context captured for the header.
- CURRENCY_CODE, PRINTED_DATE, SEQUENCE_NUM, LANGUAGE — print and localization context.
Common Use Cases and Queries
The primary use case is a concurrent or BI Publisher report that prints RFQ documents per supplier. A secondary use is ad-hoc extraction for audit or reconciliation of which RFQs and supplier sites were sent.
Example — list printable RFQs with supplier address and postal code:
- SELECT r.segment1, r.revision_num, r.vendor_name, r.address_line1, r.city, r.zip FROM po_rfq_headers_print r WHERE r.org_id = :p_org_id ORDER BY r.segment1, r.sequence_num;
Example — retrieve header details for a single PO_HEADER_ID for reproduction:
- SELECT * FROM po_rfq_headers_print WHERE po_header_id = :p_po_header_id AND org_id = :p_org_id;
Because the view is owner APPS and restricts rows via the RFQ print flag, callers expecting all RFQs should query PO_HEADERS or PO_RFQ_VENDORS directly instead.
-
View: PO_RFQ_HEADERS_PRINT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_RFQ_HEADERS_PRINT, object_name:PO_RFQ_HEADERS_PRINT, status:VALID, product: PO - Purchasing , description: Print view of RFQ headers , implementation_dba_data: APPS.PO_RFQ_HEADERS_PRINT ,
-
View: PO_RFQ_HEADERS_PRINT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_RFQ_HEADERS_PRINT, object_name:PO_RFQ_HEADERS_PRINT, status:VALID, product: PO - Purchasing , description: Print view of RFQ headers , implementation_dba_data: APPS.PO_RFQ_HEADERS_PRINT ,
-
SYNONYM: APPS.PO_RFQ_VENDORS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_RFQ_VENDORS, status:VALID,
-
SYNONYM: APPS.PO_RFQ_VENDORS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_RFQ_VENDORS, status:VALID,
-
SYNONYM: APPS.AP_TERMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AP_TERMS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.AP_TERMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AP_TERMS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.HR_EMPLOYEES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.HR_EMPLOYEES, object_name:HR_EMPLOYEES, status:VALID,
-
VIEW: APPS.HR_EMPLOYEES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.HR_EMPLOYEES, object_name:HR_EMPLOYEES, 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_RFQ_HEADERS_PRINT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_RFQ_HEADERS_PRINT, object_name:PO_RFQ_HEADERS_PRINT, 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,
-
VIEW: APPS.PO_RFQ_HEADERS_PRINT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_RFQ_HEADERS_PRINT, object_name:PO_RFQ_HEADERS_PRINT, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
SYNONYM: APPS.PO_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_HEADERS, status:VALID,
-
SYNONYM: APPS.PO_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_HEADERS, status:VALID,
-
VIEW: APPS.PO_LOOKUP_CODES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LOOKUP_CODES, object_name:PO_LOOKUP_CODES, status:VALID,
-
VIEW: APPS.PO_LOOKUP_CODES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LOOKUP_CODES, object_name:PO_LOOKUP_CODES, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
VIEW: APPS.PO_VENDOR_SITES_ALL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDOR_SITES_ALL, object_name:PO_VENDOR_SITES_ALL, status:VALID,
-
VIEW: APPS.PO_VENDOR_SITES_ALL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDOR_SITES_ALL, object_name:PO_VENDOR_SITES_ALL, 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,
-
VIEW: APPS.HR_LOCATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOCATIONS, object_name:HR_LOCATIONS, status:VALID,
-
SYNONYM: APPS.FND_LOOKUP_VALUES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_LOOKUP_VALUES, status:VALID,
-
SYNONYM: APPS.FND_LOOKUP_VALUES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_LOOKUP_VALUES, 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.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - PO Tables and Views
12.2.2
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: APPS.FND_PROFILE
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_PROFILE, status:VALID,
-
PACKAGE: APPS.FND_PROFILE
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_PROFILE, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
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. ,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
eTRM - PER Tables and Views
12.2.2
description: Table to store NQF Training info for a person ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - PO Tables and Views
12.2.2
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,