Search Results training_centre
Overview
APPS.OTV_SESSIONS is a reporting view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 releases that exposes training session records maintained by Oracle Training Administration (OTA), a module within Oracle Human Resources (HRMS). The view filters the OTA_EVENTS entity to only those rows whose EVENT_TYPE equals 'SESSION', presenting session-level scheduling data — titles, start and end times, parent event relationships, owning business group, and training centre information — in a single denormalised result set. Because it is owned by APPS and built over public synonyms and PL/SQL packages, it is intended primarily for reporting, ad-hoc queries, and downstream integration rather than for transactional data entry. The decoded training centre value, derived from the TRAINING_CENTRE lookup type, makes the view particularly convenient for operational reporting where the raw lookup code would otherwise require a separate join to HR_LOOKUP_VALUES or FND_LOOKUP_VALUES.
Underlying Base Objects
The view is defined over two synonyms and two PL/SQL packages, all resolved in the APPS schema:
- OTA_EVENTS (SYNONYM) — the core OTA event table storing both parent offerings and their child sessions. The alias EVT supplies nearly every column in the view.
- HR_ALL_ORGANIZATION_UNITS (SYNONYM) — the HR organisation definition table, aliased BGR, joined on BUSINESS_GROUP_ID = ORGANIZATION_ID to resolve the business group name.
- HR_GENERAL (PACKAGE) — supplies the DECODE_LOOKUP function used to translate the TRAINING_CENTRE lookup code into its user-facing meaning.
- OTA_GENERAL (PACKAGE) — supplies GET_BUSINESS_GROUP_ID, used in the NVL predicate to restrict rows to the caller's current business group when that context is available.
The two join predicates are mandatory inner joins, so sessions lacking a valid business group organisation row are excluded. The NVL on the business group filter means the view is effectively multi-tenant aware: users operating within a specific business group see only their own sessions, while sessions with no business group context remain visible.
Key Columns
- TITLE — the session title, inherited from the event record.
- COURSE_START_DATE, COURSE_START_TIME, COURSE_END_TIME — scheduling attributes for the session.
- DECODE_LOOKUP('TRAINING_CENTRE', EVT.CENTRE) — the decoded training centre description, reflecting the user's search term.
- PARENT_EVENT_ID — identifies the parent offering under which the session was created.
- EVENT_ID — the unique session identifier within OTA_EVENTS.
- BUSINESS_GROUP_ID and BGR.NAME — the owning business group identifier and its organisation name.
- TRAINING_CENTER_ID, LOCATION_ID — foreign keys to the training centre and location definitions used for delivery.
Common Use Cases and Queries
Typical uses include session calendars, centre utilisation reporting, and integration extracts feeding learning management or data warehouse systems. A representative query filtering by the training centre keyword is:
SELECT event_id, title, course_start_date, course_start_time, course_end_time, business_group_id FROM apps.otv_sessions WHERE 1=1;SELECT s.event_id, s.title, s.course_start_date FROM apps.otv_sessions s WHERE s.title LIKE '%training%' ORDER BY s.course_start_date;SELECT business_group_id, COUNT(*) FROM apps.otv_sessions GROUP BY business_group_id;
Because the view is read-only and APPS-owned, consumers should query it directly rather than attempting DML, and should expect the business group filter to be applied implicitly through OTA_GENERAL.GET_BUSINESS_GROUP_ID when a session context exists.
-
Lookup Type: TRAINING_CENTRE
12.2.2
product: PER - Human Resources , meaning: TRAINING CENTRE , description: The center at which an event takes place. ,
-
Lookup Type: TRAINING_CENTRE
12.1.1
product: PER - Human Resources , meaning: TRAINING CENTRE , description: The center at which an event takes place. ,
-
VIEW: APPS.OTV_SESSIONS
12.2.2
-
VIEW: APPS.OTV_SESSIONS
12.1.1
-
VIEW: APPS.OTV_ONE_TIME_EVENTS
12.1.1
-
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: APPS.OTV_ONE_TIME_EVENTS
12.2.2
-
View: OTFV_TRAINING_EVENT_SESSIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_TRAINING_EVENT_SESSIONS, object_name:OTFV_TRAINING_EVENT_SESSIONS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_TRAINING_EVENT_SESSIONS ,
-
VIEW: APPS.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,
-
VIEW: APPS.OTFV_TRAINING_EVENT_SESSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_TRAINING_EVENT_SESSIONS, object_name:OTFV_TRAINING_EVENT_SESSIONS, status:VALID,
-
VIEW: APPS.OTFV_TRAINING_EVENT_SESSIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_TRAINING_EVENT_SESSIONS, object_name:OTFV_TRAINING_EVENT_SESSIONS, status:VALID,
-
View: OTFV_TRAINING_EVENT_SESSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_TRAINING_EVENT_SESSIONS, object_name:OTFV_TRAINING_EVENT_SESSIONS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_TRAINING_EVENT_SESSIONS ,
-
VIEW: APPS.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,
-
VIEW: APPS.OTFV_ONE_TIME_TRAINING_EVENTS
12.2.2
-
VIEW: APPS.OTV_SCHEDULED_EVENTS
12.2.2
-
VIEW: APPS.OTFV_ONE_TIME_TRAINING_EVENTS
12.1.1
-
VIEW: APPS.OTV_SCHEDULED_EVENTS
12.1.1
-
View: OTV_SESSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTV_SESSIONS, object_name:OTV_SESSIONS, status:VALID, product: OTA - Learning Management , description: View to list Session event. , implementation_dba_data: APPS.OTV_SESSIONS ,
-
VIEW: APPS.OTFV_TRAINING_EVENT_SESSIONS
12.2.2
-
View: OTV_ONE_TIME_EVENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTV_ONE_TIME_EVENTS, object_name:OTV_ONE_TIME_EVENTS, status:VALID, product: OTA - Learning Management , implementation_dba_data: APPS.OTV_ONE_TIME_EVENTS ,
-
View: OTV_SESSIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTV_SESSIONS, object_name:OTV_SESSIONS, status:VALID, product: OTA - Learning Management , description: View to list Session event. , implementation_dba_data: APPS.OTV_SESSIONS ,
-
VIEW: APPS.OTFV_TRAINING_EVENT_SESSIONS
12.1.1
-
View: OTV_ONE_TIME_EVENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTV_ONE_TIME_EVENTS, object_name:OTV_ONE_TIME_EVENTS, status:VALID, product: OTA - Learning Management , implementation_dba_data: APPS.OTV_ONE_TIME_EVENTS ,
-
VIEW: APPS.OTA_RESOURCE_BOOKINGS_V
12.1.1
-
VIEW: APPS.OTA_RESOURCE_BOOKINGS_V
12.2.2
-
VIEW: APPS.OTA_EVENTS_V
12.2.2
-
VIEW: APPS.OTA_EVENTS_V
12.1.1
-
VIEW: APPS.OTA_EVENT_SEARCH_V2
12.2.2
-
VIEW: APPS.OTA_EVENT_SEARCH_V2
12.1.1
-
VIEW: APPS.OTA_EVENT_SEARCH_V
12.1.1
-
View: OTV_SCHEDULED_EVENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTV_SCHEDULED_EVENTS, object_name:OTV_SCHEDULED_EVENTS, status:VALID, product: OTA - Learning Management , description: View to list Scehduled Event. , implementation_dba_data: APPS.OTV_SCHEDULED_EVENTS ,
-
VIEW: APPS.OTA_EVENT_SEARCH_V
12.2.2
-
View: OTV_SCHEDULED_EVENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTV_SCHEDULED_EVENTS, object_name:OTV_SCHEDULED_EVENTS, status:VALID, product: OTA - Learning Management , description: View to list Scehduled Event. , implementation_dba_data: APPS.OTV_SCHEDULED_EVENTS ,
-
VIEW: APPS.OTA_EVENT_ASSOCIATIONS_V
12.2.2
-
VIEW: APPS.OTA_EVENT_ASSOCIATIONS_V
12.1.1
-
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_EVENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_EVENTS_V, object_name:OTA_EVENTS_V, status:VALID, product: OTA - Learning Management , description: View to list all Events. , implementation_dba_data: APPS.OTA_EVENTS_V ,
-
View: OTA_EVENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_EVENTS_V, object_name:OTA_EVENTS_V, status:VALID, product: OTA - Learning Management , description: View to list all Events. , implementation_dba_data: APPS.OTA_EVENTS_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 ,
-
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_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 ,
-
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: APPS.OTA_DELEGATE_BOOKINGS_V
12.1.1
-
VIEW: APPS.OTA_DELEGATE_BOOKINGS_V
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 ,