Search Results pofv_quotation_lines
Overview
POFV_QUOTATION_LINES is an APPS-owned database view in the Oracle E-Business Suite Purchasing (PO) module. It exposes the line-level detail of supplier quotations — PO headers and lines whose header TYPE_LOOKUP_CODE is 'QUOTATION' — joined to the descriptive attributes required to render a quotation line in a user-facing or reporting context. The view is marked VALID and is documented in ETRM as "Retrofitted," indicating it was introduced or regenerated to support the Oracle EBS 12.1.1 / 12.2.2 code line rather than being part of the original 11i object set.
Because a quotation in Oracle Purchasing is stored in the same PO_HEADERS_ALL and PO_LINES_ALL tables as a standard purchase order, the distinction between the two document families is carried entirely by the header type lookup. POFV_QUOTATION_LINES encapsulates that distinction and supplies the decoded, denormalized attributes — line type, organization name, unit of measure description, project and task names, hazard class, and UN number — that a raw PO_LINES_ALL query cannot provide without multiple joins. Its role is therefore primarily reporting and integration-facing: it presents quotation lines in a form suitable for OBIEE/BI Publisher extracts, custom concurrent programs, and interface queries.
Underlying Base Objects
The view is defined over fourteen documented base objects, all referenced through APPS synonyms and all residing in the PO, INV, HR, and PA schemas:
- PO_HEADERS_ALL — joined twice: once as the quotation header (QU, constrained to
TYPE_LOOKUP_CODE = 'QUOTATION') and once aliased FH as the referenced "from" header. - PO_LINES_ALL — joined twice: as QL (the quotation line) and as FL (the referenced "from" line).
- PO_LINE_TYPES — outer-joined on LINE_TYPE_ID to decode the line type.
- PO_HAZARD_CLASSES and PO_UN_NUMBERS — outer-joined to supply hazard classification and UN number.
- HR_ALL_ORGANIZATION_UNITS — supplies the operating unit
NAMEvia QL.ORG_ID. - FINANCIALS_SYSTEM_PARAMS_ALL and MTL_PARAMETERS — drive the inventory organization context used to resolve item, revision, and category information;
MP.ORGANIZATION_CODEis exposed. - MTL_SYSTEM_ITEMS, MTL_ITEM_REVISIONS, MTL_CATEGORIES, MTL_UNITS_OF_MEASURE — outer-joined to resolve item, revision, category, and unit of measure class/description.
- PA_PROJECTS_ALL and PA_TASKS — outer-joined to provide project and task names for project-related quotation lines.
The joins are predominantly outer joins ((+) syntax), preserving quotation lines even when item, revision, category, project, task, or hazard data is absent. Descriptor markers such as '_DF:PO:PO_LINES:QL' and '_KF:INV:MSTK:SI' are embedded as literal columns, identifying the descriptive flexfield and key flexfield contexts associated with the source line.
Key Columns
- PO_LINE_ID / PO_HEADER_ID — primary and foreign keys linking the row to the quotation line and header.
- LINE_NUM and SEGMENT1 — the quotation line number and the quotation document number from the header.
- ORG_ID / NAME — operating unit identifier and its organization name.
- LINE_TYPE — decoded quotation line type from PO_LINE_TYPES.
- ITEM_ID / ITEM_DESCRIPTION / ITEM_REVISION / VENDOR_PRODUCT_NUM — item identity and supplier-facing product reference.
- CATEGORY_ID / UNIT_MEAS_LOOKUP_CODE / UOM_CLASS / DESCRIPTION — purchasing category and unit of measure detail.
- UNIT_PRICE / MIN_ORDER_QUANTITY / MAX_ORDER_QUANTITY — commercial quotation terms.
- PROJECT_ID / PJ.NAME / TASK_ID / TK.TASK_NAME — project and task context.
- HAZARD_CLASS / UN_NUMBER — hazardous material classification.
- FROM_HEADER_ID / FROM_LINE_ID / FH.SEGMENT1 / FL.LINE_NUM — the source document reference for blanket-style or referenced quotation lines.
- CREATION_DATE / CREATED_BY / LAST_UPDATE_DATE / LAST_UPDATED_BY — standard audit columns used for incremental extraction.
Common Use Cases and Queries
Typical uses include extracting active quotation lines for supplier price comparison, feeding a quotation-to-order conversion report, and exposing quotation terms to a procurement dashboard. A representative query filters by operating unit and header number:
SELECT ql.line_num, ql.segment1, ql.item_description, ql.unit_price, ql.min_order_quantity, ql.max_order_quantity, ql.unit_meas_lookup_code FROM pofv_quotation_lines ql WHERE ql.org_id = :p_org_id AND ql.segment1 = :p_quotation_num ORDER BY ql.line_num;SELECT ql.segment1, ql.line_num, ql.name, ql.line_type, ql.uom_class FROM pofv_quotation_lines ql WHERE ql.creation_date >= :p_since AND ql.last_update_date >= :p_since;SELECT ql.project_id, ql.pj_name, ql.task_name, ql.unit_price FROM pofv_quotation_lines ql WHERE ql.project_id IS NOT NULL;
Because the view is read-only and applies no bind predicates of its own, queries should always constrain ORG_ID or the quotation header to avoid full scans across operating units. For incremental integrations, LAST_UPDATE_DATE supports high-water-mark extraction. As with any Purchasing view, security is governed by the underlying Purchasing document security and MO/operating unit profile settings, not by the view itself.
-
View: POFV_QUOTATION_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_QUOTATION_LINES, object_name:POFV_QUOTATION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_QUOTATION_LINES ,
-
View: POFV_QUOTATION_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_QUOTATION_LINES, object_name:POFV_QUOTATION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_QUOTATION_LINES ,
-
SYNONYM: APPS.PO_UN_NUMBERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_UN_NUMBERS, status:VALID,
-
SYNONYM: APPS.PO_UN_NUMBERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_UN_NUMBERS, status:VALID,
-
SYNONYM: APPS.PO_HAZARD_CLASSES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_HAZARD_CLASSES, status:VALID,
-
SYNONYM: APPS.PO_HAZARD_CLASSES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_HAZARD_CLASSES, status:VALID,
-
SYNONYM: APPS.MTL_CATEGORIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_CATEGORIES, status:VALID,
-
VIEW: APPS.POFV_QUOTATION_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_QUOTATION_LINES, object_name:POFV_QUOTATION_LINES, status:VALID,
-
SYNONYM: APPS.MTL_CATEGORIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_CATEGORIES, status:VALID,
-
SYNONYM: APPS.PO_LINE_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_LINE_TYPES, status:VALID,
-
VIEW: APPS.POFV_QUOTATION_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_QUOTATION_LINES, object_name:POFV_QUOTATION_LINES, 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
-
SYNONYM: APPS.MTL_ITEM_REVISIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_REVISIONS, status:VALID,
-
SYNONYM: APPS.MTL_ITEM_REVISIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_REVISIONS, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.FINANCIALS_SYSTEM_PARAMS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FINANCIALS_SYSTEM_PARAMS_ALL, status:VALID,
-
SYNONYM: APPS.FINANCIALS_SYSTEM_PARAMS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FINANCIALS_SYSTEM_PARAMS_ALL, status:VALID,
-
SYNONYM: APPS.MTL_UNITS_OF_MEASURE
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_UNITS_OF_MEASURE, status:VALID,
-
SYNONYM: APPS.MTL_UNITS_OF_MEASURE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_UNITS_OF_MEASURE, status:VALID,
-
SYNONYM: APPS.PA_TASKS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_TASKS, status:VALID,
-
SYNONYM: APPS.PO_LINES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_LINES_ALL, status:VALID,
-
SYNONYM: APPS.PA_TASKS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_TASKS, 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.PA_PROJECTS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PROJECTS_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.PA_PROJECTS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PROJECTS_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,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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.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 ,