Search Results qpfv_modifier_headers
Overview
QPFV_MODIFIER_HEADERS is a read-only view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the Advanced Pricing (QP) product family. It exposes the header-level definition of pricing modifiers, restricted to three modifier categories: discount lists, surcharge lists, and freight and special charge lists. In Oracle terminology these correspond to the LIST_TYPE_CODE values DLT, SLT, and CHARGES respectively, which is the single most important filter applied inside the view definition.
The object is defined WITH READ ONLY, so it can be queried but not used as the target of DML from a form or concurrent program. Its purpose is to present a denormalized, translatable, and user-friendly rendering of modifier header data, joining the base table to its translation table and to the currency view so that the modifier name, description, currency name, and lookup meanings appear as displayable text rather than coded values. This makes it suitable for reports, OAF or Forms LOVs, and outbound integration extracts where a readable modifier listing is required. The view is documented as VALID in the APPS schema and is listed in the ETRM metadata for release 12.2.2, with the same structure applicable to 12.1.1.
Underlying Base Objects
Three documented objects are referenced in the view text:
- QP_LIST_HEADERS_B (synonym) — the base table holding header-level modifier attributes such as active dates, currency, automatic flag, and list type.
- QP_LIST_HEADERS_TL (synonym) — the translation table supplying the language-specific NAME and DESCRIPTION, joined on LIST_HEADER_ID and filtered by
TL.LANGUAGE = USERENV('LANG')so the session language drives which translation row is returned. - FND_CURRENCIES_VL (view) — supplies the descriptive currency name, joined on CURRENCY_CODE.
The join between the header base table and its translation table is an inner join on LIST_HEADER_ID, which means a header with no translation row for the current language will not appear. The currency join is likewise an equality join on CURRENCY_CODE.
Key Columns
- LIST_HEADER_ID — primary identifier of the modifier header; the key used to join to lines and qualifiers.
- NAME / DESCRIPTION — translated modifier name and description.
- VERSION_NO — version of the modifier header.
- LIST_TYPE_CODE — discriminator restricted to DLT, SLT, and CHARGES; accompanied by a lookup meaning column.
- START_DATE_ACTIVE / END_DATE_ACTIVE — effective date range for the modifier.
- ACTIVE_FLAG / AUTOMATIC_FLAG — whether the modifier is enabled and whether it applies automatically.
- CURRENCY_CODE / CURRENCY_NAME — the modifier currency and its descriptive name.
- SOURCE_SYSTEM_CODE — originating system, with lookup meaning.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY — standard Who columns.
Common Use Cases and Queries
Typical uses include listing all active discount and surcharge modifiers for a period, auditing modifier versioning, and feeding external systems with readable modifier data.
SELECT list_header_id, name, list_type_code,
start_date_active, end_date_active,
currency_code, currency_name
FROM apps.qpfv_modifier_headers
WHERE active_flag = 'Y'
AND SYSDATE BETWEEN start_date_active AND NVL(end_date_active, SYSDATE+1)
ORDER BY name;
To isolate freight and special charges only:
SELECT name, description, currency_name FROM apps.qpfv_modifier_headers WHERE list_type_code = 'CHARGES';
Because the view is read-only and already resolves translations and lookups, it is generally preferred over querying QP_LIST_HEADERS_B and QP_LIST_HEADERS_TL directly for reporting, reducing join complexity and ensuring language-consistent output.
-
View: QPFV_MODIFIER_HEADERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPFV_MODIFIER_HEADERS, object_name:QPFV_MODIFIER_HEADERS, status:VALID, product: QP - Advanced Pricing , description: This view gives information about Discount List, Surcharge List and Freight and Special charges type of modifier headers. , implementation_dba_data: APPS.QPFV_MODIFIER_HEADERS ,
-
View: QPFV_MODIFIER_HEADERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPFV_MODIFIER_HEADERS, object_name:QPFV_MODIFIER_HEADERS, status:VALID, product: QP - Advanced Pricing , description: This view gives information about Discount List, Surcharge List and Freight and Special charges type of modifier headers. , implementation_dba_data: APPS.QPFV_MODIFIER_HEADERS ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.QPFV_MODIFIER_HEADERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPFV_MODIFIER_HEADERS, object_name:QPFV_MODIFIER_HEADERS, status:VALID,
-
SYNONYM: APPS.QP_LIST_HEADERS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:QP_LIST_HEADERS_TL, status:VALID,
-
VIEW: APPS.QPFV_MODIFIER_HEADERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QPFV_MODIFIER_HEADERS, object_name:QPFV_MODIFIER_HEADERS, status:VALID,
-
SYNONYM: APPS.QP_LIST_HEADERS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:QP_LIST_HEADERS_TL, status:VALID,
-
SYNONYM: APPS.QP_LIST_HEADERS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:QP_LIST_HEADERS_B, status:VALID,
-
SYNONYM: APPS.QP_LIST_HEADERS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:QP_LIST_HEADERS_B, status:VALID,
-
VIEW: APPS.FND_CURRENCIES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_CURRENCIES_VL, object_name:FND_CURRENCIES_VL, status:VALID,
-
VIEW: APPS.FND_CURRENCIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_CURRENCIES_VL, object_name:FND_CURRENCIES_VL, status:VALID,
-
eTRM - QP Tables and Views
12.1.1
description: This table stores information about which workers handle which list_lines, headers, formulas or price adjustments at the time of upgrade. ,
-
eTRM - QP Tables and Views
12.2.2
description: This table stores information about which workers handle which list_lines, headers, formulas or price adjustments at the time of upgrade. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - QP Tables and Views
12.1.1
description: This table stores information about which workers handle which list_lines, headers, formulas or price adjustments at the time of upgrade. ,
-
eTRM - QP Tables and Views
12.2.2
description: This table stores information about which workers handle which list_lines, headers, formulas or price adjustments at the time of upgrade. ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,