Results for “event_title”
50+ results
AI-generated from documented ETRM metadata — verify critical details on the linked pages.
Overview
OTFV_EVENTS_WITHOUT_VENUE is an Oracle E-Business Suite database view owned by the APPS schema and validated under the OTA (Learning Management) product. Per the ETRM metadata, it is classified as a "business view template from which the flexfield view is generated," meaning it serves as the foundational definition layer for a descriptive flexfield-enabled reporting view rather than as a standalone transactional entity. The view exposes a filtered subset of learning events: those for which no confirmed venue resource booking exists.
In the context of EBS 12.1.1 and 12.2.2, the view isolates events that have no completed physical-location assignment. The predicate excludes any event whose EVENT_ID appears in a subquery joining OTA_EVENTS, OTA_SUPPLIABLE_RESOURCES, and OTA_RESOURCE_BOOKINGS where RESOURCE_TYPE = 'V' (venue) and booking STATUS = 'C' (confirmed). It further restricts results to events whose EVENT_TYPE is neither 'PROGRAMME' nor 'AD HOC', and enforces multi-tenant isolation through the NVL(OTA_GENERAL.GET_BUSINESS_GROUP_ID, ...) business group filter. The view is declared WITH READ ONLY, so it cannot be used for DML.
Underlying Base Objects
The documented referenced objects are OTA_EVENTS (base event table, accessed via synonym), OTA_EVENTS_TL (the translated attributes table), OTA_GENERAL (the package supplying the business group context), OTA_RESOURCE_BOOKINGS, and OTA_SUPPLIABLE_RESOURCES. The projected view text selects only from the OTA_EVENTS alias EVT; OTA_EVENTS_TL is referenced in the documented object list and is typically joined by flexfield views generated from this template to resolve language-specific TITLE values, while OTA_SUPPLIABLE_RESOURCES and OTA_RESOURCE_BOOKINGS appear exclusively in the NOT IN subquery. OTA_GENERAL is invoked only as a function call within the WHERE clause, not as a joined table.
Key Columns
- EVENT_ID — The primary key of the learning event from OTA_EVENTS. This is the column most frequently used for joining to other OTA tables such as OTA_EVENT_OFFERINGS, OTA_ATTENDEES, or booking records, and is the value returned for users searching on "event_id."
- EVENT_TITLE — The event title sourced from EVT.TITLE. In translated flexfield views generated from this template, this value is resolved against OTA_EVENTS_TL.
- OFFERING_ID — The offering identifier from OTA_EVENTS, linking the event to its parent offering record.
All three columns are exposed with the same names they carry in the base table, with OFFERING_ID substituted for the source label. No additional column aliases or computed expressions are documented.
Common Use Cases and Queries
The principal use case is identifying learning events that still require a venue to be booked or confirmed, supporting scheduling and logistics reporting. A second use case is validating venue coverage before publishing a course catalog, and a third is auditing event types that bypass the standard venue workflow.
A minimal lookup by event identifier follows:
SELECT event_id, event_title, offering_id FROM apps.otfv_events_without_venue WHERE event_id = :p_event_id;
To list all venue-less events for reporting:
SELECT event_id, offering_id, event_title FROM apps.otfv_events_without_venue ORDER BY event_id;
Because the view is read-only and applies the business group filter automatically, callers running under a valid OTA session need only supply their own additional predicates. For joins, use EVENT_ID as the correlation key to OTA_EVENTS or to offering-level tables, and reference the view primarily as a filtering mechanism rather than as a source of descriptive attributes.
-
Business view template from which the flexfield view is generated.
APPS.OTFV_EVENTS_WITHOUT_VENUE·↳ OTA_EVENTS·↳ OTA_EVENTS_TL·↳ OTA_RESOURCE_BOOKINGS·Explore OTA module →
-
Business view template from which the flexfield view is generated.
APPS.OTFV_EVENTS_WITHOUT_VENUE·↳ OTA_EVENTS·↳ OTA_EVENTS_TL·↳ OTA_RESOURCE_BOOKINGS·Explore OTA module →
-
Business view template from which the flexfield view is generated.
APPS.OTFV_EVENTS_WITHOUT_TRAINER·↳ OTA_EVENTS·↳ OTA_EVENTS_TL·↳ OTA_RESOURCE_BOOKINGS·Explore OTA module →
-
Business view template from which the flexfield view is generated.
APPS.OTFV_MISSING_REQ_RESOURCES·↳ OTA_ACTIVITY_VERSIONS·↳ OTA_ACTIVITY_VERSIONS_TL·↳ OTA_EVENTS·Explore OTA module →
-
Business view template from which the flexfield view is generated.
APPS.OTFV_EVENTS_WITHOUT_TRAINER·↳ OTA_EVENTS·↳ OTA_EVENTS_TL·↳ OTA_RESOURCE_BOOKINGS·Explore OTA module →
-
View: OTFV_TOTAL_ENROLLMENTS 12.2.2
Business view template from which the flexfield view is generated.
APPS.OTFV_TOTAL_ENROLLMENTS·↳ OTA_BOOKING_STATUS_TYPES·↳ OTA_DELEGATE_BOOKINGS·↳ OTA_EVENTS·Explore OTA module →
-
View: OTV_EVENT_ASSOCIATIONS 12.2.2
APPS.OTV_EVENT_ASSOCIATIONS·↳ HR_ALL_ORGANIZATION_UNITS·↳ HR_ORGANIZATION_UNITS·↳ OTA_ACTIVITY_VERSIONS·Explore OTA module →
-
View: OTV_ONE_TIME_EVENTS 12.1.1
APPS.OTV_ONE_TIME_EVENTS·↳ HR_ALL_ORGANIZATION_UNITS·↳ OTA_EVENTS·↳ PO_VENDORS·Explore OTA module →
-
Business view template from which the flexfield view is generated.
APPS.OTFV_MISSING_REQ_RESOURCES·↳ OTA_ACTIVITY_VERSIONS·↳ OTA_ACTIVITY_VERSIONS_TL·↳ OTA_EVENTS·Explore OTA module →
-
View: OTV_EVENT_ASSOCIATIONS 12.1.1
APPS.OTV_EVENT_ASSOCIATIONS·↳ HR_ALL_ORGANIZATION_UNITS·↳ HR_ORGANIZATION_UNITS·↳ OTA_ACTIVITY_VERSIONS·Explore OTA module →
-
View: OTFV_EVENTS_WITH_VENUE 12.1.1
Business view template from which the flexfield view is generated.
APPS.OTFV_EVENTS_WITH_VENUE·↳ OTA_EVENTS·↳ OTA_EVENTS_TL·↳ OTA_RESOURCE_BOOKINGS·Explore OTA module →
-
View: OTFV_EVENTS_WITH_VENUE 12.2.2
Business view template from which the flexfield view is generated.
APPS.OTFV_EVENTS_WITH_VENUE·↳ OTA_EVENTS·↳ OTA_EVENTS_TL·↳ OTA_RESOURCE_BOOKINGS·Explore OTA module →
-
View: OTV_ONE_TIME_EVENTS 12.2.2
APPS.OTV_ONE_TIME_EVENTS·↳ HR_ALL_ORGANIZATION_UNITS·↳ OTA_EVENTS·↳ PO_VENDORS·Explore OTA module →
-
View: OTV_SESSIONS 12.1.1
View to list Session event.
APPS.OTV_SESSIONS·↳ HR_ALL_ORGANIZATION_UNITS·↳ OTA_EVENTS·Explore OTA module →
-
View to list all the letter request lines generated for Student Enrollments
APPS.OTA_LETTER_REQUEST_LINES_V·↳ OTA_DELEGATE_BOOKINGS·↳ OTA_EVENTS·↳ OTA_EVENTS_TL·Explore OTA module →
-
View to list all the letter request lines generated for Student Enrollments
APPS.OTA_LETTER_REQUEST_LINES_V·↳ OTA_DELEGATE_BOOKINGS·↳ OTA_EVENTS·↳ OTA_EVENTS_TL·Explore OTA module →
-
Business view template from which the flexfield view is generated.
APPS.OTFV_EVENTS_WITH_TRAINER·↳ OTA_EVENTS·↳ OTA_EVENTS_TL·↳ OTA_RESOURCE_BOOKINGS·Explore OTA module →
-
Business view template from which the flexfield view is generated.
APPS.OTFV_EVENTS_WITH_TRAINER·↳ OTA_EVENTS·↳ OTA_EVENTS_TL·↳ OTA_RESOURCE_BOOKINGS·Explore OTA module →
-
View: OTV_SESSIONS 12.2.2
View to list Session event.
APPS.OTV_SESSIONS·↳ HR_ALL_ORGANIZATION_UNITS·↳ OTA_EVENTS·Explore OTA module →
-
View: OTFV_TOTAL_ENROLLMENTS 12.1.1
Business view template from which the flexfield view is generated.
APPS.OTFV_TOTAL_ENROLLMENTS·↳ OTA_BOOKING_STATUS_TYPES·↳ OTA_DELEGATE_BOOKINGS·↳ OTA_EVENTS·Explore OTA module →
-
Business view template from which the flexfield view is generated.
APPS.OTFV_ACTIVITY_CATEGORIES·↳ OTA_ACTIVITY_DEFINITIONS·↳ OTA_ACTIVITY_DEFINITIONS_TL·↳ OTA_ACTIVITY_VERSIONS·Explore OTA module →
-
Business view template from which the flexfield view is generated.
APPS.OTFV_ENROLLMENT_STATUS_HISTORY·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ HZ_CUST_ACCOUNTS·↳ HZ_CUST_ACCOUNT_ROLES·Explore OTA module →
-
View: OTFV_TRAINING_AMOUNT 12.1.1
Business view template from which the flexfield view is generated.
APPS.OTFV_TRAINING_AMOUNT·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ OE_ORDER_HEADERS_ALL·↳ OE_ORDER_LINES_ALL·Explore OTA module →
-
Business view template from which the flexfield view is generated.
APPS.OTFV_ENROLLMENT_AGREEMENTS·↳ FND_USER·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ HZ_CUST_ACCOUNTS·Explore OTA module →
-
View: OTFV_FINANCE_LINES 12.1.1
Business view template from which the flexfield view is generated.
APPS.OTFV_FINANCE_LINES·↳ AR_LOOKUPS·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ HZ_CUST_ACCOUNTS·Explore OTA module →
-
View: OTFV_COST_TRANSFER 12.2.2
Business view template from which the flexfield view is generated.
APPS.OTFV_COST_TRANSFER·↳ GL_CODE_COMBINATIONS·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ OTA_ACTIVITY_VERSIONS·Explore OTA module →
-
Business view template from which the flexfield view is generated.
APPS.OTFV_HR_RESTRICTED_EVENTS·↳ FND_CURRENCIES_VL·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ OTA_EVENTS·Explore OTA module →
-
View: OTFV_RESOURCES_BOOKED 12.2.2
Business view template from which the flexfield view is generated.
APPS.OTFV_RESOURCES_BOOKED·↳ FND_USER·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ OTA_ACTIVITY_DEFINITIONS·Explore OTA module →
-
Business view template from which the flexfield view is generated.
APPS.OTFV_CUST_RESTRICTED_EVENTS·↳ FND_CURRENCIES_VL·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ HZ_CUST_ACCOUNTS·Explore OTA module →
-
Business view template from which the flexfield view is generated.
APPS.OTFV_ACTIVITY_CATEGORIES·↳ OTA_ACTIVITY_DEFINITIONS·↳ OTA_ACTIVITY_DEFINITIONS_TL·↳ OTA_ACTIVITY_VERSIONS·Explore OTA module →
-
View: OTFV_FINANCE_LINES 12.2.2
Business view template from which the flexfield view is generated.
APPS.OTFV_FINANCE_LINES·↳ AR_LOOKUPS·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ HZ_CUST_ACCOUNTS·Explore OTA module →
-
Business view template from which the flexfield view is generated.
APPS.OTFV_ENROLLMENT_STATUS_HISTORY·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ HZ_CUST_ACCOUNTS·↳ HZ_CUST_ACCOUNT_ROLES·Explore OTA module →
-
Business view template from which the flexfield view is generated.
APPS.OTFV_HR_RESTRICTED_EVENTS·↳ FND_CURRENCIES_VL·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ OTA_EVENTS·Explore OTA module →
-
View: OTV_SCHEDULED_EVENTS 12.1.1
View to list Scehduled Event.
APPS.OTV_SCHEDULED_EVENTS·↳ FND_CURRENCIES_VL·↳ HR_ALL_ORGANIZATION_UNITS·↳ OTA_ACTIVITY_VERSIONS·Explore OTA module →
-
View: OTFV_TRAINING_AMOUNT 12.2.2
Business view template from which the flexfield view is generated.
APPS.OTFV_TRAINING_AMOUNT·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ OE_ORDER_HEADERS_ALL·↳ OE_ORDER_LINES_ALL·Explore OTA module →
-
Business view template from which the flexfield view is generated.
APPS.OTFV_CUST_RESTRICTED_EVENTS·↳ FND_CURRENCIES_VL·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ HZ_CUST_ACCOUNTS·Explore OTA module →
-
View: OTFV_RESOURCES_BOOKED 12.1.1
Business view template from which the flexfield view is generated.
APPS.OTFV_RESOURCES_BOOKED·↳ FND_USER·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ OTA_ACTIVITY_DEFINITIONS·Explore OTA module →
-
Business view template from which the flexfield view is generated.
APPS.OTFV_ENROLLMENT_AGREEMENTS·↳ FND_USER·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ HZ_CUST_ACCOUNTS·Explore OTA module →
-
View: OTFV_COST_TRANSFER 12.1.1
Business view template from which the flexfield view is generated.
APPS.OTFV_COST_TRANSFER·↳ GL_CODE_COMBINATIONS·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ OTA_ACTIVITY_VERSIONS·Explore OTA module →
-
View: OTFV_TRAINING_EVENTS 12.1.1
Business view template from which the flexfield view is generated.
APPS.OTFV_TRAINING_EVENTS·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ OTA_ACTIVITY_DEFINITIONS·↳ OTA_ACTIVITY_DEFINITIONS_TL·Explore OTA module →
-
View: OTFV_TRAINING_EVENTS 12.2.2
Business view template from which the flexfield view is generated.
APPS.OTFV_TRAINING_EVENTS·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ OTA_ACTIVITY_DEFINITIONS·↳ OTA_ACTIVITY_DEFINITIONS_TL·Explore OTA module →
-
View: OTV_SCHEDULED_EVENTS 12.2.2
View to list Scehduled Event.
APPS.OTV_SCHEDULED_EVENTS·↳ FND_CURRENCIES_VL·↳ HR_ALL_ORGANIZATION_UNITS·↳ OTA_ACTIVITY_VERSIONS·Explore OTA module →
-
View to list all resource bookings.
APPS.OTA_RESOURCE_BOOKINGS_V·↳ FND_USER·↳ HR_LOOKUPS·↳ OTA_ACTIVITY_VERSIONS_TL·Explore OTA module →
-
APPS.OTA_TRAINING_PLAN_COSTS_V·↳ FND_COMMON_LOOKUPS·↳ OTA_DELEGATE_BOOKINGS·↳ OTA_EVENTS·Explore OTA module →
-
View: OTFV_ENROLLED_EVENTS 12.2.2
Business view template from which the flexfield view is generated.
APPS.OTFV_ENROLLED_EVENTS·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ HR_LOCATIONS_ALL·↳ HR_LOCATIONS_ALL_TL·Explore OTA module →
-
APPS.OTA_TRAINING_PLAN_COSTS_V·↳ FND_COMMON_LOOKUPS·↳ OTA_DELEGATE_BOOKINGS·↳ OTA_EVENTS·Explore OTA module →
-
View to list all resource bookings.
APPS.OTA_RESOURCE_BOOKINGS_V·↳ FND_USER·↳ HR_LOOKUPS·↳ OTA_ACTIVITY_VERSIONS_TL·Explore OTA module →
-
View: OTFV_ENROLLED_EVENTS 12.1.1
Business view template from which the flexfield view is generated.
APPS.OTFV_ENROLLED_EVENTS·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ HR_LOCATIONS_ALL·↳ HR_LOCATIONS_ALL_TL·Explore OTA module →
-
View: OTA_FINANCE_LINES_V 12.1.1
View to list all information for Finance Lines.
APPS.OTA_FINANCE_LINES_V·↳ AR_LOOKUPS·↳ HR_ORGANIZATION_UNITS·↳ HZ_CUST_ACCOUNTS·Explore OTA module →
-
View to list External Asociations for an Event.
APPS.OTA_EVENT_ASSOCIATIONS_V·↳ AR_LOOKUPS·↳ HR_LOOKUPS·↳ HZ_CUST_ACCOUNTS·Explore OTA module →