Search Results pobv_quotation_lines
Overview
POBV_QUOTATION_LINES is an APPS-owned read-only view in the Oracle E-Business Suite Purchasing (PO) module, documented in ETRM for releases 12.1.1 and 12.2.2 and flagged as retrofitted. It presents supplier quotation line detail drawn from the transactional purchasing tables, filtered so that only lines belonging to documents whose header type is QUOTATION are returned. Quotations represent supplier responses to requests for quotation, capturing pricing, quantity boundaries, and vendor product references. The view exposes a denormalized, business-friendly projection of that data, joining the quotation line to its header, line type, and operating unit so that report authors and integration developers can retrieve header and organization context without writing the join logic themselves.
The view implements an organization security predicate (the '_SEC:QL.ORG_ID' clause visible in the view text) and is defined WITH READ ONLY, meaning no DML may be issued against it. Because it reads directly from the base purchasing tables rather than a materialized snapshot, results always reflect the committed state of the underlying quotation transactions.
Underlying Base Objects
The view is defined over four base objects, all referenced through synonyms in the APPS schema:
- PO_LINES_ALL — the driving table (alias QL), supplying quotation line attributes and the PO_LINE_ID key.
- PO_HEADERS_ALL — joined on PO_HEADER_ID and restricted to TYPE_LOOKUP_CODE = 'QUOTATION'; supplies the quotation document number (SEGMENT1).
- PO_LINE_TYPES — an outer join on LINE_TYPE_ID providing the line type name.
- HR_ALL_ORGANIZATION_UNITS — joined on ORG_ID to ORGANIZATION_ID, supplying the operating unit name.
The header join is an inner join, so only lines on quotation-type headers appear. The line type join is outer, allowing lines with an unresolved LINE_TYPE_ID to remain visible.
Key Columns
Column names exposed by the view are the report-facing aliases; several map to differently named base columns.
- QUOTATION_LINE_ID (PO_LINE_ID) — unique identifier for the quotation line.
- QUOTATION_DOCUMENT_NUMBER (QU.SEGMENT1) — the human-readable quotation number users search on. This is the column most commonly referenced, and it is the field matching the search term "quotation_document_number".
- QUOTATION_ID (PO_HEADER_ID) — foreign key to the quotation header.
- LINE_NUMBER — the line's display sequence within the quotation.
- OPERATING_UNIT_ID / OPERATING_UNIT_NAME — the inventory organization context from HR_ALL_ORGANIZATION_UNITS.
- LINE_TYPE — the purchasing line type, such as Goods or Services.
- ITEM_DESCRIPTION, ITEM_ID, ITEM_REVISION, CATEGORY_ID, UNIT_OF_MEASURE — item and UOM attributes for the quoted line.
- UNIT_PRICE, MAXIMUM_ORDER_QUANTITY, MINIMUM_ORDER_QUANTITY — commercial terms.
- SUPPLIER_NOTE, SUPPLIER_PRODUCT_NUMBER — vendor-supplied descriptive data.
- RFQ_ID / RFQ_LINE_ID (FROM_HEADER_ID / FROM_LINE_ID) — the solicitation the quotation responds to.
- PROJECT_ID, TASK_ID, HAZARD_CLASS_ID, UN_NUMBER_ID — project and regulatory attributes.
- CREATED_DATE, CREATED_BY, LAST_UPDATED_DATE, LAST_UPDATED_BY — audit columns.
Common Use Cases and Queries
Typical uses include quotation price-list reporting, supplier response analysis, RFQ-to-quotation reconciliation, and inbound integration extracts. All queries are restricted by the view's built-in organization security; the accessing responsibility's organization context applies automatically.
Retrieve lines for a specific quotation document number:
SELECT quotation_document_number, line_number, item_description, unit_price, minimum_order_quantity, maximum_order_quantity FROM apps.pobv_quotation_lines WHERE quotation_document_number = :doc_num ORDER BY line_number;
List all quotation lines for an operating unit, with line type:
SELECT quotation_document_number, line_number, line_type, item_id, unit_price FROM apps.pobv_quotation_lines WHERE operating_unit_name = :org_name ORDER BY quotation_document_number, line_number;
Trace a quotation line back to its originating RFQ:
SELECT quotation_document_number, line_number, rfq_id, rfq_line_id FROM apps.pobv_quotation_lines WHERE quotation_line_id = :line_id;
-
View: POBV_QUOTATION_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_QUOTATION_LINES, object_name:POBV_QUOTATION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_QUOTATION_LINES ,
-
View: POBV_QUOTATION_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_QUOTATION_LINES, object_name:POBV_QUOTATION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_QUOTATION_LINES ,
-
VIEW: APPS.POBV_QUOTATION_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_QUOTATION_LINES, object_name:POBV_QUOTATION_LINES, status:VALID,
-
VIEW: APPS.POBV_QUOTATION_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_QUOTATION_LINES, object_name:POBV_QUOTATION_LINES, status:VALID,
-
SYNONYM: APPS.PO_LINE_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_LINE_TYPES, status:VALID,
-
SYNONYM: APPS.PO_LINE_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_LINE_TYPES, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.PO_LINES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_LINES_ALL, status:VALID,
-
SYNONYM: APPS.PO_LINES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_LINES_ALL, status:VALID,
-
SYNONYM: APPS.PO_HEADERS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_HEADERS_ALL, status:VALID,
-
SYNONYM: APPS.PO_HEADERS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_HEADERS_ALL, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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 ,
-
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 ,