Search Results event_price_basis
Overview
The APPS.OTFV_PRICE_LIST_ENTRIES view is a reporting and integration object within the Oracle E-Business Suite (EBS) Training and Certification / ETRM (Enterprise Training Resource Management) module of Oracle Learning Management (OLM). It presents a denormalized, presentation-ready projection of training price list entries, joining price list headers to their associated activity versions, activity definitions, and organization (business group) information. Because the underlying price list configuration is stored in normalized base tables, this view allows developers, report authors, and integrators to consume a single, flattened result set that exposes business-friendly decoded values rather than raw coded identifiers.
The view is particularly relevant to the search term event_price_basis. The column price_basis in this view is produced by the call HR_BIS.BIS_DECODE_LOOKUP('EVENT_PRICE_BASIS', ple.price_basis), which resolves the stored lookup code into its descriptive meaning (for example, per event, per attendee, or per unit). This makes the view a convenient source for reports that need to explain how a given price was applied.
The view is defined WITH READ ONLY, confirming that it is intended exclusively for querying and cannot be used for DML.
Underlying Base Objects
Per the documented ETRM metadata, OTFV_PRICE_LIST_ENTRIES is defined over the following base objects:
- OTA_PRICE_LIST_ENTRIES (synonym) — the primary detail table holding each priced entry, including price, price basis, dates, and attendee limits.
- OTA_PRICE_LISTS (synonym) — the price list header, supplying name, type, currency, default flag, and validity range.
- OTA_ACTIVITY_VERSIONS and OTA_ACTIVITY_VERSIONS_TL (synonyms) — the activity (offering) version and its translated name and RCO identifier.
- OTA_ACTIVITY_DEFINITIONS and OTA_ACTIVITY_DEFINITIONS_TL (synonyms) — the parent activity and its translated activity type name.
- HR_ALL_ORGANIZATION_UNITS_TL (synonym) — provides the translated business group name.
- OTA_GENERAL (package) — supplies
FND_CURRENCY_NAMEfor currency decoding andGET_BUSINESS_GROUP_IDfor row-level security filtering. - HR_BIS (package) — supplies
BIS_DECODE_LOOKUPto translate coded lookups into meanings.
The translation tables are outer-joined with userenv('LANG') restrictions, so entries persist even when translations are missing.
Key Columns
- business_group_name — the translated name of the business group (organization) owning the price list.
- price — the monetary value defined on the price list entry.
- price_basis — the decoded
EVENT_PRICE_BASISlookup meaning, indicating the basis on which the price applies. - entry_start_date / entry_end_date — the validity window of the individual price list entry.
- maximum_attendees / minimum_attendees — the attendee count boundaries for the entry.
- price_list_name, price_list_type, price_list_description — header attributes, with
price_list_typedecoded via thePRICE_LIST_TYPElookup. - default_price_list — decoded
YES_NOflag indicating whether the list is a default. - training_units, unit_price — the unit definition and corresponding single-unit price.
- price_list_currency — the descriptive currency name derived from
FND_CURRENCY_NAME. - activity_name, activity_type — the translated activity (offering) version name and its type.
- business_group_id, activity_version_id, activity_id, price_list_id, price_list_entry_id, rco_id — surrogate keys useful for joins and drill-downs.
Common Use Cases and Queries
Typical uses include price list auditing, pricing analytics, integration extracts, and reporting on how events are priced by basis and attendee thresholds.
- Listing all entries for a given price list with decoded price basis.
- Reporting prices by activity and currency for a business group.
- Identifying entries filtered by
price_basismeaning for compliance or margin analysis.
Sample SQL:
SELECT price_list_name, activity_name, price, price_basis, price_list_currency,
entry_start_date, entry_end_date, minimum_attendees, maximum_attendees
FROM apps.otfv_price_list_entries
WHERE price_basis = 'Per Attendee'
AND SYSDATE BETWEEN entry_start_date AND NVL(entry_end_date, SYSDATE)
ORDER BY price_list_name, activity_name;
Because the view is READ ONLY and enforces business group context via OTA_GENERAL.GET_BUSINESS_GROUP_ID, queries automatically respect the caller's security profile. Reports requiring the numeric lookup code rather than the decoded meaning should query the base OTA_PRICE_LIST_ENTRIES table directly.
-
Lookup Type: EVENT_PRICE_BASIS
12.1.1
product: PER - Human Resources , meaning: CLASS PRICE BASIS , description: The price basis of a Class . ,
-
Lookup Type: EVENT_PRICE_BASIS
12.2.2
product: PER - Human Resources , meaning: CLASS PRICE BASIS , description: The price basis of a Class . ,
-
VIEW: APPS.OTFV_PRICE_LIST_ENTRIES
12.2.2
-
VIEW: APPS.OTA_PRICE_LIST_ENTRIES_V
12.1.1
-
VIEW: APPS.OTFV_PRICE_LIST_ENTRIES
12.1.1
-
VIEW: APPS.OTA_PRICE_LIST_ENTRIES_V
12.2.2
-
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 ,
-
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,
-
VIEW: APPS.OTA_EVENT_SEARCH_V2
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: APPS.OTA_EVENT_SEARCH_V
12.2.2
-
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,
-
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: APPS.OTA_EVENT_SEARCH_V
12.1.1
-
VIEW: APPS.OTA_EVENT_SEARCH_V2
12.1.1
-
View: OTA_PRICE_LIST_ENTRIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_PRICE_LIST_ENTRIES_V, object_name:OTA_PRICE_LIST_ENTRIES_V, status:VALID, product: OTA - Learning Management , description: View to list all enteries in a Price List. , implementation_dba_data: APPS.OTA_PRICE_LIST_ENTRIES_V ,
-
View: OTA_PRICE_LIST_ENTRIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_PRICE_LIST_ENTRIES_V, object_name:OTA_PRICE_LIST_ENTRIES_V, status:VALID, product: OTA - Learning Management , description: View to list all enteries in a Price List. , implementation_dba_data: APPS.OTA_PRICE_LIST_ENTRIES_V ,
-
VIEW: APPS.OTA_EVENT_ASSOCIATIONS_V
12.1.1
-
VIEW: APPS.OTA_EVENT_ASSOCIATIONS_V
12.2.2
-
VIEW: APPS.OTFV_TRAINING_EVENTS
12.1.1
-
VIEW: APPS.OTFV_TRAINING_EVENTS
12.2.2
-
VIEW: APPS.OTA_DELEGATE_BOOKINGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_DELEGATE_BOOKINGS_V, object_name:OTA_DELEGATE_BOOKINGS_V, status:VALID,
-
VIEW: APPS.OTA_DELEGATE_BOOKINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_DELEGATE_BOOKINGS_V, object_name:OTA_DELEGATE_BOOKINGS_V, status:VALID,
-
View: OTFV_TRAINING_EVENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_TRAINING_EVENTS, object_name:OTFV_TRAINING_EVENTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_TRAINING_EVENTS ,
-
View: OTA_EVENT_SEARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_EVENT_SEARCH_V, object_name:OTA_EVENT_SEARCH_V, status:VALID, product: OTA - Learning Management , description: View to list all Events. Used in Event Search Folder Form. , implementation_dba_data: APPS.OTA_EVENT_SEARCH_V ,
-
View: OTFV_TRAINING_EVENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_TRAINING_EVENTS, object_name:OTFV_TRAINING_EVENTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_TRAINING_EVENTS ,
-
View: OTA_EVENT_SEARCH_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_EVENT_SEARCH_V2, object_name:OTA_EVENT_SEARCH_V2, status:VALID, product: OTA - Learning Management , description: View to list all Events. Used in Event Search Folder Form. , implementation_dba_data: APPS.OTA_EVENT_SEARCH_V2 ,
-
View: OTA_EVENT_SEARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_EVENT_SEARCH_V, object_name:OTA_EVENT_SEARCH_V, status:VALID, product: OTA - Learning Management , description: View to list all Events. Used in Event Search Folder Form. , implementation_dba_data: APPS.OTA_EVENT_SEARCH_V ,
-
View: OTA_EVENT_SEARCH_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_EVENT_SEARCH_V2, object_name:OTA_EVENT_SEARCH_V2, status:VALID, product: OTA - Learning Management , description: View to list all Events. Used in Event Search Folder Form. , implementation_dba_data: APPS.OTA_EVENT_SEARCH_V2 ,
-
PACKAGE: APPS.OTA_OFFERING_API
12.1.1
-
PACKAGE: APPS.OTA_OFFERING_API
12.2.2
-
PACKAGE: APPS.OTA_EVENT_API
12.1.1
-
PACKAGE: APPS.OTA_EVENT_API
12.2.2
-
View: OTA_DELEGATE_BOOKINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_DELEGATE_BOOKINGS_V, object_name:OTA_DELEGATE_BOOKINGS_V, status:VALID, product: OTA - Learning Management , description: View to list all Student and Customer Enrollment. , implementation_dba_data: APPS.OTA_DELEGATE_BOOKINGS_V ,
-
View: OTA_DELEGATE_BOOKINGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_DELEGATE_BOOKINGS_V, object_name:OTA_DELEGATE_BOOKINGS_V, status:VALID, product: OTA - Learning Management , description: View to list all Student and Customer Enrollment. , implementation_dba_data: APPS.OTA_DELEGATE_BOOKINGS_V ,
-
APPS.OTA_OFFERING_API dependencies on STANDARD
12.2.2
-
APPS.OTA_OFFERING_API dependencies on STANDARD
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.OTA_EVENT_API dependencies on STANDARD
12.1.1
-
APPS.OTA_EVENT_API dependencies on STANDARD
12.2.2
-
eTRM - OTA Tables and Views
12.2.2
description: Currently not used ,
-
eTRM - OTA Tables and Views
12.1.1
description: Currently not used ,