Search Results price_list_type
Overview
APPS.OTFV_PRICE_LISTS is a read-only reporting view within the Oracle E-Business Suite (EBS) Training Administration (OTA) module, exposed by the Oracle Training and Event Management (OTM/ETRM) product family. The view consolidates price list definitions maintained in the Oracle iLearning and Training Administration subsystems, presenting them in a denormalized, human-readable format suitable for queries, concurrent programs, and downstream integrations. Its primary role is to translate coded values (currency codes, lookup types, and language-dependent organization names) into consumer-facing descriptions while restricting the result set to the current session's business group.
The "F" prefix in the view name (OTFV) follows Oracle's standard convention for "form" views — objects that surface data for display in a specific functional context rather than for base-table manipulation. The database definition includes the WITH READ ONLY clause, which guarantees that no DML can be issued against the view, reinforcing its role as a reporting and integration interface. Notably, the column aliased deafult_price_list (a misspelling preserved in the shipped definition) is the column most relevant to the search term "default_price_list"; it exposes whether a given price list is flagged as the default for its business group.
Underlying Base Objects
As documented in the ETRM 12.2.2 metadata, OTFV_PRICE_LISTS is defined over four referenced base objects:
- OTA_PRICE_LISTS (SYNONYM) — the primary driving table containing the actual price list records, columns such as NAME, DESCRIPTION, CURRENCY_CODE, DEFAULT_FLAG, START_DATE, END_DATE, PRICE_LIST_TYPE, SINGLE_UNIT_PRICE, and TRAINING_UNIT_TYPE.
- HR_ALL_ORGANIZATION_UNITS_TL (SYNONYM) — the translated organization units table, joined on ORGANIZATION_ID = BUSINESS_GROUP_ID and LANGUAGE = USERENV('LANG') to retrieve the business group name in the user's session language.
- HR_BIS (PACKAGE) — the Business Intelligence System package providing the
bis_decode_lookupfunction used to decode YES_NO and PRICE_LIST_TYPE lookups into descriptions. - OTA_GENERAL (PACKAGE) — supplies
fnd_currency_namefor currency decoding andget_business_group_idfor the row-level business group restriction.
The view therefore functions as a semantic layer over the base OTA_PRICE_LISTS table, extending it with translated lookups and organization context.
Key Columns
- business_group_name — the translated name of the business group that owns the price list.
- price_list_name and description — the identifying text for the price list.
- currency — the currency code resolved to its descriptive name via
fnd_currency_name. - deafult_price_list — the decoded YES/NO flag indicating whether the price list is the default. This is the column a user searching "deafult_price_list" is most likely seeking.
- price_list_start_date, price_list_end_date — validity dates for the price list.
- price_list_type — decoded PRICE_LIST_TYPE lookup.
- unit_price and training_unit — the single unit price and associated training unit type.
- price_list_id, business_group_id — surrogate keys for joining back to base tables.
Common Use Cases and Queries
Typical use cases include identifying the default price list for a business group, listing all active price lists and their currencies, and feeding price list data into reporting or integration extracts. Because the view automatically applies NVL(OTA_GENERAL.GET_BUSINESS_GROUP_ID, ...) and language filtering, queries return only the current session's business group context.
Example: retrieving the default price list:
SELECT price_list_id,
price_list_name,
deafult_price_list,
currency
FROM apps.otfv_price_lists
WHERE deafult_price_list = 'Yes';
Example: listing all currently valid price lists:
SELECT price_list_name,
price_list_type,
price_list_start_date,
price_list_end_date
FROM apps.otfv_price_lists
WHERE SYSDATE BETWEEN price_list_start_date AND NVL(price_list_end_date, SYSDATE);
Because the object is inherently read-only, it is safe for BI Publisher reports, OBIEE extracts, and ad-hoc SQL without risk of accidental DML.
-
Lookup Type: PRICE_LIST_TYPE
12.2.2
product: PER - Human Resources , meaning: PRICE LIST TYPE , description: Type of price list for training activities. ,
-
Lookup Type: PRICE_LIST_TYPE
12.1.1
product: PER - Human Resources , meaning: PRICE LIST TYPE , description: Type of price list for training activities. ,
-
VIEW: APPS.OTFV_PRICE_LISTS
12.2.2
-
View: OTFV_PRICE_LISTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_PRICE_LISTS, object_name:OTFV_PRICE_LISTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_PRICE_LISTS ,
-
VIEW: APPS.OTFV_PRICE_LISTS
12.1.1
-
VIEW: APPS.OTFV_PRICE_LIST_ENTRIES
12.1.1
-
View: OTFV_PRICE_LIST_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_PRICE_LIST_ENTRIES, object_name:OTFV_PRICE_LIST_ENTRIES, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_PRICE_LIST_ENTRIES ,
-
View: OTFV_PRICE_LIST_ENTRIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_PRICE_LIST_ENTRIES, object_name:OTFV_PRICE_LIST_ENTRIES, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_PRICE_LIST_ENTRIES ,
-
VIEW: OTA.OTA_PRICE_LISTS#
12.2.2
-
View: OTFV_PRICE_LISTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_PRICE_LISTS, object_name:OTFV_PRICE_LISTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_PRICE_LISTS ,
-
View: OTFV_ENROLLMENT_AGREEMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_ENROLLMENT_AGREEMENTS, object_name:OTFV_ENROLLMENT_AGREEMENTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_ENROLLMENT_AGREEMENTS ,
-
VIEW: APPS.OTFV_PRICE_LIST_ENTRIES
12.2.2
-
APPS.OTA_TPL_SHD SQL Statements
12.2.2
-
VIEW: APPS.OTFV_ENROLLMENT_AGREEMENTS
12.1.1
-
View: OTFV_ENROLLMENT_AGREEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_ENROLLMENT_AGREEMENTS, object_name:OTFV_ENROLLMENT_AGREEMENTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_ENROLLMENT_AGREEMENTS ,
-
VIEW: APPS.OTFV_ENROLLMENT_AGREEMENTS
12.2.2
-
View: OTA_PRICE_LISTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_PRICE_LISTS_V, object_name:OTA_PRICE_LISTS_V, status:VALID, product: OTA - Learning Management , description: View to list all information for Price list. , implementation_dba_data: APPS.OTA_PRICE_LISTS_V ,
-
VIEW: APPS.OTA_PRICE_LISTS_V
12.1.1
-
APPS.OTA_TPL_SHD SQL Statements
12.1.1
-
VIEW: APPS.OTA_PRICE_LISTS_V
12.2.2
-
View: OTA_PRICE_LISTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_PRICE_LISTS_V, object_name:OTA_PRICE_LISTS_V, status:VALID, product: OTA - Learning Management , description: View to list all information for Price list. , implementation_dba_data: APPS.OTA_PRICE_LISTS_V ,
-
VIEW: APPS.OTFV_PRICE_LISTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_PRICE_LISTS, object_name:OTFV_PRICE_LISTS, status:VALID,
-
VIEW: APPS.OTA_PRICE_LISTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_PRICE_LISTS_V, object_name:OTA_PRICE_LISTS_V, status:VALID,
-
VIEW: APPS.OTA_PRICE_LISTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_PRICE_LISTS_V, object_name:OTA_PRICE_LISTS_V, status:VALID,
-
VIEW: OTA.OTA_PRICE_LISTS#
12.2.2
owner:OTA, object_type:VIEW, object_name:OTA_PRICE_LISTS#, status:VALID,
-
VIEW: APPS.OTA_BOOKING_DEALS_V
12.2.2
-
VIEW: APPS.OTA_BOOKING_DEALS_V
12.1.1
-
VIEW: APPS.OTFV_PRICE_LISTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_PRICE_LISTS, object_name:OTFV_PRICE_LISTS, status:VALID,
-
VIEW: APPS.OTFV_ENROLLMENT_AGREEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_ENROLLMENT_AGREEMENTS, object_name:OTFV_ENROLLMENT_AGREEMENTS, status:VALID,
-
VIEW: APPS.OTFV_PRICE_LIST_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_PRICE_LIST_ENTRIES, object_name:OTFV_PRICE_LIST_ENTRIES, status:VALID,
-
VIEW: APPS.OTFV_PRICE_LIST_ENTRIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_PRICE_LIST_ENTRIES, object_name:OTFV_PRICE_LIST_ENTRIES, status:VALID,
-
VIEW: APPS.OTFV_ENROLLMENT_AGREEMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_ENROLLMENT_AGREEMENTS, object_name:OTFV_ENROLLMENT_AGREEMENTS, status:VALID,
-
VIEW: APPS.OTA_EVENT_ASSOCIATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_EVENT_ASSOCIATIONS_V, object_name:OTA_EVENT_ASSOCIATIONS_V, status:VALID,
-
APPS.OTA_TPL_INS SQL Statements
12.2.2
-
APPS.OTA_TPL_INS SQL Statements
12.1.1
-
VIEW: APPS.OTA_EVENT_ASSOCIATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_EVENT_ASSOCIATIONS_V, object_name:OTA_EVENT_ASSOCIATIONS_V, status:VALID,
-
APPS.OTA_TPL_UPD SQL Statements
12.1.1
-
APPS.OTA_TPL_UPD SQL Statements
12.2.2
-
TABLE: OTA.OTA_PRICE_LISTS
12.1.1
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_PRICE_LISTS, object_name:OTA_PRICE_LISTS, status:VALID,
-
TABLE: OTA.OTA_PRICE_LISTS
12.2.2
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_PRICE_LISTS, object_name:OTA_PRICE_LISTS, status:VALID,
-
View: OTA_BOOKING_DEALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_BOOKING_DEALS_V, object_name:OTA_BOOKING_DEALS_V, status:VALID, product: OTA - Learning Management , description: View to list all information about an Enrollment Agreement. , implementation_dba_data: APPS.OTA_BOOKING_DEALS_V ,
-
View: OTA_BOOKING_DEALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_BOOKING_DEALS_V, object_name:OTA_BOOKING_DEALS_V, status:VALID, product: OTA - Learning Management , description: View to list all information about an Enrollment Agreement. , implementation_dba_data: APPS.OTA_BOOKING_DEALS_V ,
-
APPS.OTA_TPL_BUS SQL Statements
12.1.1
-
APPS.OTA_TPL_BUS SQL Statements
12.2.2
-
PACKAGE BODY: APPS.OTA_TPL_SHD
12.1.1
-
PACKAGE BODY: APPS.OTA_TPL_SHD
12.2.2
-
View: OTA_EVENT_ASSOCIATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_EVENT_ASSOCIATIONS_V, object_name:OTA_EVENT_ASSOCIATIONS_V, status:VALID, product: OTA - Learning Management , description: View to list External Asociations for an Event. , implementation_dba_data: APPS.OTA_EVENT_ASSOCIATIONS_V ,
-
View: OTA_EVENT_ASSOCIATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_EVENT_ASSOCIATIONS_V, object_name:OTA_EVENT_ASSOCIATIONS_V, status:VALID, product: OTA - Learning Management , description: View to list External Asociations for an Event. , implementation_dba_data: APPS.OTA_EVENT_ASSOCIATIONS_V ,
-
PACKAGE: APPS.OTA_TPL_SHD
12.2.2
-
PACKAGE: APPS.OTA_TPL_SHD
12.1.1