Search Results event_end_date
Overview
OTFV_ONE_TIME_TRAINING_EVENTS is an APPS-owned business view template in Oracle E-Business Suite (documented for 12.1.1 and 12.2.2) within the OTA – Learning Management product. As the description states, it is a "business view template from which the flexfield view is generated" — meaning Oracle Training Administration (OTA) uses it as the source definition to build a runtime flexfield-enabled view that exposes one-time training event data through the Flexfields (Descriptive Flexfields) framework. It is a read-only view (defined WITH READ ONLY) that consolidates information about ad hoc, one-time training events and presents it with user-friendly display names.
The view is significant because it transforms technical key columns (IDs) into descriptive business names (event name, business group name, training centre, supplier), making it a natural foundation for reporting, extracts, and integration of training event data. It filters to ad hoc events only (EVT.EVENT_TYPE = 'AD HOC'), so it covers one-time delivery rather than scheduled recurring offerings. The "_DF" pseudo-column ties the view into the descriptive flexfield mechanism, and the language-aware joins ensure multilingual TL data is returned for the caller's session language.
Underlying Base Objects
Per the documented ETRM metadata for 12.2.2, the view is defined over the following referenced base objects:
- OTA_EVENTS (synonym) — the primary fact source; supplies event title, comments, start/end date and time, timezone, duration, duration units, vendor, training center, business group, and the EVENT_ID, OFFERING_ID, and BUSINESS_GROUP_ID keys.
- OTA_EVENTS_TL (synonym) — listed as a referenced object in the metadata, supporting translated event attributes in the OTA translation layer.
- HR_ALL_ORGANIZATION_UNITS and HR_ALL_ORGANIZATION_UNITS_TL (synonyms) — provide the business group (BGR/BGRT) and training centre (ORGT1) names, with language-based joins on the TL tables.
- PO_VENDORS (view) — outer-joined to supply SUPPLIER_NAME from the vendor record.
- HR_BIS (package) — used via BIS_DECODE_LOOKUP to translate the FREQUENCY lookup code for DURATION_UNITS into a display value.
- OTA_GENERAL (package) — used via GET_BUSINESS_GROUP_ID to constrain results to the caller's current business group using NVL.
The joins are constructed as outer joins (VEN.VENDOR_ID(+) and ORGT1.ORGANIZATION_ID(+)), allowing events without a supplier or training centre to still be returned. Language predicates on BGRT and ORGT1 restrict the TL rows to USERENV('LANG').
Key Columns
The view exposes the following documented columns:
- EVENT_END_DATE — sourced from EVT.COURSE_END_DATE; the calendar date the one-time event concludes. This is the column most directly relevant to the search term "event_end_date".
- EVENT_START_DATE / EVENT_START_TIME / EVENT_END_TIME — the corresponding start date, and start/end times for the event (from COURSE_START_DATE, COURSE_START_TIME, COURSE_END_TIME).
- TIME_ZONE — the event timezone (displayed as TIME_ZONE).
- EVENT_NAME, EVENT_COMMENTS — descriptive attributes sourced from OTA_EVENTS.TITLE and COMMENTS.
- BUSINESS_GROUP_NAME — organization name of the event's business group.
- TRAINING_CENTRE and SUPPLIER_NAME — the delivering training centre and external supplier/vendor.
- DURATION and DURATION_UNITS — the event duration and its decoded frequency unit.
- BUSINESS_GROUP_ID, EVENT_ID, TRAINING_CENTER_ID, OFFERING_ID — the identifying keys used for joins and integration.
- "_DF" — the descriptive flexfield context column used to generate the flexfield view.
Common Use Cases and Queries
Typical uses include training event listings, calendar and scheduling extracts, completion/attendance reporting, and integration feeds into external learning or HR systems. Because EVENT_END_DATE is derived from COURSE_END_DATE, a common query is to retrieve events finishing within a date window:
SELECT business_group_name,
event_name,
event_start_date,
event_end_date,
training_centre,
supplier_name
FROM apps.otfv_one_time_training_events
WHERE event_end_date BETWEEN :p_from_date AND :p_to_date
ORDER BY event_end_date;
A second common pattern is to count ad hoc events per training centre over a period:
SELECT training_centre,
COUNT(*) AS event_count
FROM apps.otfv_one_time_training_events
WHERE event_end_date >= :p_period_start
GROUP BY training_centre;
The view is read-only and already filters to 'AD HOC' events and the caller's business group and session language, so reports should not apply additional business group or event type predicates unless overriding those defaults intentionally. Where translated data is required in multiple languages, callers must ensure the session language (USERENV('LANG')) matches the desired TL rows.
-
View: OTFV_ONE_TIME_TRAINING_EVENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_ONE_TIME_TRAINING_EVENTS, object_name:OTFV_ONE_TIME_TRAINING_EVENTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_ONE_TIME_TRAINING_EVENTS ,
-
View: OTFV_ONE_TIME_TRAINING_EVENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_ONE_TIME_TRAINING_EVENTS, object_name:OTFV_ONE_TIME_TRAINING_EVENTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_ONE_TIME_TRAINING_EVENTS ,
-
View: OTFV_HR_RESTRICTED_EVENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_HR_RESTRICTED_EVENTS, object_name:OTFV_HR_RESTRICTED_EVENTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_HR_RESTRICTED_EVENTS ,
-
View: OTFV_HR_RESTRICTED_EVENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_HR_RESTRICTED_EVENTS, object_name:OTFV_HR_RESTRICTED_EVENTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_HR_RESTRICTED_EVENTS ,
-
View: OTFV_CUST_RESTRICTED_EVENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_CUST_RESTRICTED_EVENTS, object_name:OTFV_CUST_RESTRICTED_EVENTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_CUST_RESTRICTED_EVENTS ,
-
View: OTFV_CUST_RESTRICTED_EVENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_CUST_RESTRICTED_EVENTS, object_name:OTFV_CUST_RESTRICTED_EVENTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_CUST_RESTRICTED_EVENTS ,
-
View: OTFV_SCHEDULED_TRAINING_EVENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_SCHEDULED_TRAINING_EVENTS, object_name:OTFV_SCHEDULED_TRAINING_EVENTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_SCHEDULED_TRAINING_EVENTS ,
-
View: OTFV_SCHEDULED_TRAINING_EVENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_SCHEDULED_TRAINING_EVENTS, object_name:OTFV_SCHEDULED_TRAINING_EVENTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_SCHEDULED_TRAINING_EVENTS ,
-
View: OTA_RESOURCE_BOOKINGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_RESOURCE_BOOKINGS_V, object_name:OTA_RESOURCE_BOOKINGS_V, status:VALID, product: OTA - Learning Management , description: View to list all resource bookings. , implementation_dba_data: APPS.OTA_RESOURCE_BOOKINGS_V ,
-
View: OTA_RESOURCE_BOOKINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_RESOURCE_BOOKINGS_V, object_name:OTA_RESOURCE_BOOKINGS_V, status:VALID, product: OTA - Learning Management , description: View to list all resource bookings. , implementation_dba_data: APPS.OTA_RESOURCE_BOOKINGS_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 ,
-
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 ,