Search Results quote_vendor_quote_number
Overview
APPS.PO_CATALOG_QUOTES_ALL_V is a reporting view in the Oracle E-Business Suite Purchasing module that exposes supplier catalog quotation headers. In Oracle Purchasing, a catalog quotation is a purchasing document used to record supplier pricing and availability for goods, typically as a precursor to negotiation or as a reference for sourcing decisions. The view isolates quotation-type documents by filtering PO_HEADERS on TYPE_LOOKUP_CODE = 'QUOTATION', providing a narrow, purpose-built projection of quotation header data rather than the full breadth of the PO_HEADERS record.
The "_ALL" suffix indicates the view is not restricted to a single operating unit through row-level security in the manner of many operational views; it presents quotation records across the organizations visible in the underlying data. The presence of ORG_ID among the selected columns reinforces that quotations are organization-specific and that consumers of the view are expected to filter or group by operating unit as required. The view is owned by APPS and is intended for read-only reporting and integration scenarios rather than transactional processing.
Underlying Base Objects
The view is defined over a single base object, PO_HEADERS, referenced through a synonym. PO_HEADERS is the central header table of the Purchasing schema and stores the common attributes shared by all document types — requisitions converted to orders, purchase orders, RFQs, and quotations — with TYPE_LOOKUP_CODE distinguishing them. Because the view selects only from PO_HEADERS, it inherits no distribution, line, or shipment detail; it is strictly a header-level projection. The defining predicate TYPE_LOOKUP_CODE = 'QUOTATION' means the view returns only quotation documents and excludes standard purchase orders and other document types stored in the same table.
Since the view is a simple filtered select against PO_HEADERS, it is a non-updatable, read-only construct. No joins, aggregations, or analytic functions are applied, so query performance is governed entirely by the access path chosen for PO_HEADERS, typically an index on document type or organization combined with organization and type filters.
Key Columns
- SEGMENT1 — The document number of the quotation. This is the human-readable identifier presented to users and is the field most commonly correlated with search terms such as "quote_vendor_quote_number."
- QUOTE_VENDOR_QUOTE_NUMBER — The supplier's own reference or quote number associated with the quotation. This column supports the business need to trace an EBS quotation back to the vendor's originating quote document, and it is frequently used as a search or matching key in integrations and reports.
- PO_HEADER_ID — The unique internal identifier of the header record in PO_HEADERS. This is the primary key used to join the view to quotation lines, shipments, distributions, and other dependent tables that are not exposed here.
- ORG_ID — The operating unit (organization) that owns the quotation. Because multiple operating units share PO_HEADERS, this column is essential for scoping results correctly.
- CREATION_DATE — The date the quotation header record was created, useful for aging, audit, and date-bounded reporting.
Common Use Cases and Queries
Typical uses include listing all quotations for an operating unit, retrieving a quotation by its document number, and locating a quotation using the supplier's own quote reference. The latter is the most direct response to a search on "quote_vendor_quote_number."
- List recent quotations for an organization:
SELECT segment1, quote_vendor_quote_number, creation_date FROM apps.po_catalog_quotes_all_v WHERE org_id = :org_id ORDER BY creation_date DESC; - Find a quotation by vendor quote number:
SELECT segment1, po_header_id, org_id FROM apps.po_catalog_quotes_all_v WHERE quote_vendor_quote_number = :vendor_quote_number; - Join to header detail for extended attributes:
SELECT v.segment1, v.quote_vendor_quote_number, h.vendor_id, h.vendor_site_id FROM apps.po_catalog_quotes_all_v v, apps.po_headers h WHERE v.po_header_id = h.po_header_id;
Because the view surfaces the PO_HEADER_ID, it serves as a convenient entry point into the wider Purchasing data model whenever users need quotation lines, price breaks, or supplier terms. Reports and interfaces should always constrain by ORG_ID to avoid cross-operating-unit results.
-
VIEW: APPS.PO_CATALOG_QUOTES_ALL_V
12.2.2
-
View: PO_CATALOG_QUOTES_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_CATALOG_QUOTES_ALL_V, object_name:PO_CATALOG_QUOTES_ALL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY , implementation_dba_data: APPS.PO_CATALOG_QUOTES_ALL_V ,
-
VIEW: APPS.PO_CATALOG_QUOTES_ALL_V
12.1.1
-
View: PO_CATALOG_QUOTES_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_CATALOG_QUOTES_ALL_V, object_name:PO_CATALOG_QUOTES_ALL_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY , implementation_dba_data: APPS.PO_CATALOG_QUOTES_ALL_V ,
-
APPS.PO_HEADERS_SV9 SQL Statements
12.1.1
-
APPS.PO_HEADERS_SV9 SQL Statements
12.2.2
-
VIEW: APPS.PO_CATALOG_QUOTES_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_CATALOG_QUOTES_ALL_V, object_name:PO_CATALOG_QUOTES_ALL_V, status:VALID,
-
VIEW: APPS.PO_CATALOG_QUOTES_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_CATALOG_QUOTES_ALL_V, object_name:PO_CATALOG_QUOTES_ALL_V, status:VALID,
-
VIEW: APPS.PO_LINES_CHANGE_PRINT
12.2.2
-
VIEW: APPS.PO_LINES_CHANGE_PRINT
12.1.1
-
VIEW: IGC.IGC_CC_ARC_PO_HEADERS_ALL#
12.2.2
-
VIEW: APPS.PO_HEADER_CHANGES_V
12.2.2
-
View: PO_LINES_CHANGE_PRINT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_CHANGE_PRINT, object_name:PO_LINES_CHANGE_PRINT, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_LINES_CHANGE_PRINT ,
-
View: PO_LINES_CHANGE_PRINT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_CHANGE_PRINT, object_name:PO_LINES_CHANGE_PRINT, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_LINES_CHANGE_PRINT ,
-
VIEW: APPS.PO_LINES_PRINT
12.2.2
-
VIEW: APPS.PO_LINES_PRINT
12.1.1
-
View: PO_HEADERS_ALL_MRC_V
12.2.2
product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: PO_HEADERS_MRC_V
12.1.1
product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
VIEW: PO.PO_HEADERS_DRAFT_ALL#
12.2.2
-
View: PO_LINES_PRINT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_PRINT, object_name:PO_LINES_PRINT, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_LINES_PRINT ,
-
View: PO_LINES_PRINT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_PRINT, object_name:PO_LINES_PRINT, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_LINES_PRINT ,
-
VIEW: PO.PO_HEADERS_ALL#
12.2.2
-
VIEW: PO.PO_HEADERS_ARCHIVE_ALL#
12.2.2
-
View: PO_HEADERS_ALL_MRC_V
12.1.1
product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: PO_HEADERS_MRC_V
12.2.2
product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ECE_POO_LINES_V
12.2.2
-
VIEW: APPS.ECE_POO_LINES_V
12.1.1
-
VIEW: APPS.ICX_PO_RFQ_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_RFQ_HEADERS_V, object_name:ICX_PO_RFQ_HEADERS_V, status:VALID,
-
VIEW: APPS.PO_QUOTATIONS_TO_APPROVE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_QUOTATIONS_TO_APPROVE, object_name:PO_QUOTATIONS_TO_APPROVE, status:VALID,
-
VIEW: APPS.ICX_PO_RFQ_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_RFQ_HEADERS_V, object_name:ICX_PO_RFQ_HEADERS_V, status:VALID,
-
VIEW: APPS.PO_HEADERS_TRX_V
12.2.2
-
View: PO_HEADERS_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_TRX_V, object_name:PO_HEADERS_TRX_V, status:VALID, product: PO - Purchasing , description: View on po_headers table. , implementation_dba_data: APPS.PO_HEADERS_TRX_V ,
-
VIEW: APPS.PO_QUOTATIONS_TO_APPROVE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_QUOTATIONS_TO_APPROVE, object_name:PO_QUOTATIONS_TO_APPROVE, status:VALID,
-
PACKAGE BODY: APPS.PO_HEADERS_SV9
12.1.1
-
View: PO_LINES_XML
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_XML, object_name:PO_LINES_XML, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_LINES_XML ,
-
View: ICX_PO_LINES_INQ_V
12.1.1
product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.PO_HEADERS_SV9
12.2.2
-
View: ICX_PO_LINES_INQ_V
12.2.2
product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: ECE_POO_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POO_LINES_V, object_name:ECE_POO_LINES_V, status:VALID, product: EC - e-Commerce Gateway , description: /*#* This view extracts line information* for the outbound Purchase Order (850/ORDERS) transaction.* @rep:scope private* @rep:product PO* @rep:lifecycle active* @rep:displayname Purchase Order Line View* @rep:category BUSINESS_ENTITY PO_PUR , implementation_dba_data: APPS.ECE_POO_LINES_V ,
-
View: PO_LINES_XML
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_XML, object_name:PO_LINES_XML, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_LINES_XML ,
-
View: PO_LINES_ARCHIVE_XML
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_ARCHIVE_XML, object_name:PO_LINES_ARCHIVE_XML, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_LINES_ARCHIVE_XML ,
-
VIEW: IGC.IGC_CC_ARC_PO_HEADERS_ALL#
12.2.2
owner:IGC, object_type:VIEW, object_name:IGC_CC_ARC_PO_HEADERS_ALL#, status:VALID,
-
View: ECE_POO_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POO_LINES_V, object_name:ECE_POO_LINES_V, status:VALID, product: EC - e-Commerce Gateway , description: /*#* This view extracts line information* for the outbound Purchase Order (850/ORDERS) transaction.* @rep:scope private* @rep:product PO* @rep:lifecycle active* @rep:displayname Purchase Order Line View* @rep:category BUSINESS_ENTITY PO_PUR , implementation_dba_data: APPS.ECE_POO_LINES_V ,
-
View: PO_LINES_ARCHIVE_XML
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_ARCHIVE_XML, object_name:PO_LINES_ARCHIVE_XML, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_LINES_ARCHIVE_XML ,
-
View: PO_ITEM_SOURCES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ITEM_SOURCES, object_name:PO_ITEM_SOURCES, status:VALID, product: PO - Purchasing , description: Sources for an item , implementation_dba_data: APPS.PO_ITEM_SOURCES ,
-
VIEW: APPS.PO_HEADERS_RFQQT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_RFQQT_V, object_name:PO_HEADERS_RFQQT_V, status:VALID,
-
VIEW: APPS.PO_HEADERS_RFQQT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HEADERS_RFQQT_V, object_name:PO_HEADERS_RFQQT_V, status:VALID,
-
APPS.PO_HEADERS_SV4 SQL Statements
12.1.1
-
View: PO_ITEM_SOURCES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ITEM_SOURCES, object_name:PO_ITEM_SOURCES, status:VALID, product: PO - Purchasing , description: Sources for an item , implementation_dba_data: APPS.PO_ITEM_SOURCES ,
-
APPS.PO_HEADERS_SV4 SQL Statements
12.2.2