Search Results dev_event_type
Overview
APPS.OTA_EVENTS_V is a reporting and integration view within the Oracle E-Business Suite (EBS) OTA (Oracle Training Administration) module. It exposes scheduled training event data — the individual deliveries of a course or activity — in a denormalized, human-readable form, resolving foreign-key identifiers into descriptive meanings wherever possible. The view is defined in the APPS schema and is intended for concurrent programs, Oracle Reports, OBIEE/XML Publisher extracts, and custom integrations that need to consume event records without joining the underlying transactional tables. Because it draws on both base synonyms and PL/SQL packages, it is a read-only construct; no DML is permitted against it. Its presence in both 12.1.1 and 12.2.2 reflects the stability of the OTA data model across these releases, with the 12.2.2 OAF-based UI continuing to rely on the same underlying event schema.
Underlying Base Objects
The view is defined over OTA_EVENTS (SYNONYM), the transactional master table for scheduled events, and OTA_EVENTS_TL, its translation table supplying the multi-language title. It uses OUTER-joined lookups via HR_LOOKUPS (VIEW) indirectly through the HR_GENERAL package. OTA_EVT_SHD (PACKAGE) supplies the RESOURCE_BOOKING_FLAG derived value through the OTA_EVT_SHD.RESOURCE_BOOKING_FLAG function, and OTA_GENERAL provides the hr_org_name helper for the organization name. OTA_UTILITY provides get_lang_name, OTA_OFFERINGS_VL exposes offering-level data, and OTA_ACTIVITY_VERSIONS / OTA_ACTIVITY_DEFINITIONS_TL supply activity context. Additionally, PA_PROJECTS_ALL, PO_VENDORS, and HR_API are referenced as supporting sources. The view is therefore best understood as a presentation layer over OTA_EVENTS_TL, OTA_EVENTS, and lookup decode logic, rather than a simple single-table projection.
Key Columns
- EVENT_ID, OBJECT_VERSION_NUMBER — Primary key and optimistic-locking version of the event record.
- TITLE — Translated course/activity title from OTA_EVENTS_TL.
- COURSE_START_DATE, COURSE_START_TIME, COURSE_END_DATE, COURSE_END_TIME, DURATION, DURATION_UNITS — Scheduling and duration attributes.
- ENROLMENT_START_DATE, ENROLMENT_END_DATE — Enrolment window boundaries.
- RESOURCE_BOOKING_FLAG — Derived via OTA_EVT_SHD.RESOURCE_BOOKING_FLAG, indicating whether resources are booked for the event.
- PUBLIC_EVENT_FLAG, SECURE_EVENT_FLAG — Visibility and access-control indicators.
- MINIMUM_ATTENDEES, MAXIMUM_ATTENDEES, MAXIMUM_INTERNAL_ATTENDEES — Capacity constraints.
- STANDARD_PRICE, ACTUAL_COST, BUDGET_COST, BUDGET_CURRENCY_CODE, CURRENCY_CODE — Financial attributes.
- DEVELOPMENT_EVENT_TYPE, DEVELOPMENT_EVENT_TYPE_MEANING — Lookup code and decoded description for the "DEV_EVENT_TYPE" lookup type. This is the column the user’s search for "dev_event_type" resolves to.
- ORGANIZATION_ID, ORGANIZATION_NAME — Owning HR organization and its decoded name.
- CENTRE, CENTRE_MEANING — Training centre code and its TRAINING_CENTRE lookup meaning.
- PROGRAMME_CODE, PROGRAMME_CODE_MEANING — Category code and decoded ACTIVITY_CATEGORY meaning.
- EVENT_STATUS — Status code (decoded via SCHEDULED_EVENT_STATUS lookup).
- LANGUAGE_CODE, LANGUAGE_DESCRIPTION — Offering language and decoded name.
- EVT_INFORMATION1..20 — Descriptive flexfield (DFF) segments for the event.
- Created_by / last_updated_by audit columns — Standard WHO columns.
Common Use Cases and Queries
Typical uses include event catalogs, enrolment reports, capacity/utilisation analysis, and integrations into learning management portals. The DEVELOPMENT_EVENT_TYPE_MEANING column is frequently filtered or grouped to distinguish development versus non-development events.
- List all development events and their decoded type:
SELECT event_id, title, course_start_date, development_event_type, development_event_type_meaning FROM apps.ota_events_v WHERE development_event_type IS NOT NULL; - Active events by organization and centre:
SELECT organization_name, centre_meaning, title, event_status FROM apps.ota_events_v WHERE course_start_date >= SYSDATE ORDER BY organization_name, course_start_date;
- Enrolment capacity analysis:
SELECT title, minimum_attendees, maximum_attendees, maximum_internal_attendees, public_event_flag FROM apps.ota_events_v WHERE event_status = 'PLANNED';
Because the view invokes PL/SQL functions (RESOURCE_BOOKING_FLAG, hr_org_name, decode_fnd_comm_lookup) per row, performance-sensitive extracts should constrain the driving set, and should prefer materialising results into a custom table when high-volume reporting is required.
-
Lookup Type: DEV_EVENT_TYPE
12.1.1
product: PER - Human Resources , meaning: DEV EVENT TYPE , description: User defined type to categorize development events. ,
-
Lookup Type: DEV_EVENT_TYPE
12.2.2
product: PER - Human Resources , meaning: DEV EVENT TYPE , description: User defined type to categorize development events. ,
-
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.2.2
-
VIEW: APPS.OTA_EVENT_SEARCH_V
12.1.1
-
VIEW: APPS.OTFV_TRAINING_EVENTS
12.2.2
-
VIEW: APPS.OTFV_TRAINING_EVENTS
12.1.1
-
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_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_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: 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 ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.OTA_EVT_BUS dependencies on OTA_GENERAL
12.2.2
-
APPS.OTA_EVT_BUS dependencies on OTA_GENERAL
12.1.1
-
PACKAGE BODY: APPS.OTA_EVT_BUS
12.2.2
-
PACKAGE BODY: APPS.OTA_EVT_BUS
12.1.1