Search Results event_tentative_flag
Overview
APPS.OTV_SCHEDULED_EVENTS is a reporting view within the Oracle E-Business Suite (EBS) Training Administration (OTA) module, delivered under the OTV (Training Views) naming convention. It exposes a pre-joined, business-friendly projection of scheduled training events, combining event scheduling attributes, offering version details, vendor information, currency, language, and lookup-decoded status values. The view is designed to be queried directly by reports, OBIEE/XML Publisher extracts, and integration interfaces without requiring the caller to reconstruct the multi-table joins between OTA_EVENTS, OTA_ACTIVITY_VERSIONS, and associated lookup tables.
A defining characteristic of this view is that it is pre-filtered to return only events meeting specific runtime criteria. The WHERE clause restricts output to events whose enrolment window and course window are open as of TRUNC(SYSDATE), whose EVENT_TYPE is 'SCHEDULED', and whose EVENT_STATUS is one of ('N','P','F'). Because these filters are embedded in the view definition, results are inherently dynamic and depend on the system date at query execution time. The business group of the session (via OTA_GENERAL.GET_BUSINESS_GROUP_ID) and the event's own BUSINESS_GROUP_ID further constrain the result set.
Underlying Base Objects
The documented base objects referenced by APPS.OTV_SCHEDULED_EVENTS span several schemas and object types, reflecting the cross-functional nature of training data:
- OTA_ACTIVITY_VERSIONS (SYNONYM) — provides VERSION_NAME and ACTIVITY_VERSION_ID, joining on ACTIVITY_VERSION_ID.
- OTA_EVENTS (SYNONYM) — the primary driver table, supplying title, dates, times, duration, status, pricing, attendee limits, and flags.
- PO_VENDORS (VIEW) — outer-joined by VENDOR_ID to supply VENDOR_NAME.
- FND_CURRENCIES_VL (VIEW) — outer-joined on CURRENCY_CODE to yield currency name.
- OTA_OFFERINGS_VL (VIEW) — outer-joined via parent_offering_id to obtain language and offering context.
- HR_ALL_ORGANIZATION_UNITS (SYNONYM) — joined on BUSINESS_GROUP_ID to derive the business group name (BGR.NAME).
- HR_GENERAL (PACKAGE) — supplies DECODE_LOOKUP for translating lookup codes into display values.
- OTA_GENERAL (PACKAGE) — provides GET_BUSINESS_GROUP_ID for session security filtering.
- OTA_UTILITY (PACKAGE) — provides get_lang_name for language display.
- OTA_VIEWS_PKG (PACKAGE) — supplies OTA_GET_PLACES_AVAILABLE to calculate remaining places.
Key Columns
The columns most relevant to reporting and integration include:
- TITLE, COURSE_START_DATE, COURSE_END_DATE, COURSE_START_TIME, COURSE_END_TIME, DURATION — core scheduling detail; DURATION is paired with a frequency lookup decode for its units.
- SCHEDULED_EVENT_STATUS (and EVENT_STATUS) — EVENT_STATUS is decoded via HR_GENERAL.DECODE_LOOKUP('SCHEDULED_EVENT_STATUS', EVT.EVENT_STATUS) to produce the human-readable scheduled event status cited in user searches. The view also derives a yes/no "published" indicator from EVENT_STATUS = 'F'.
- USER_STATUS — decoded via the EVENT_USER_STATUS lookup, with a derived flag for USER_STATUS = 'PL'.
- OTA_GET_PLACES_AVAILABLE(EVENT_ID) — computed count of available places.
- ENROLMENT_START_DATE / ENROLMENT_END_DATE — enrolment window boundaries.
- MINIMUM_ATTENDEES, MAXIMUM_ATTENDEES, STANDARD_PRICE, CURRENCY NAME — capacity and pricing.
- VENDOR_NAME, CENTRE (decoded), TRAINING_CENTER_ID, LOCATION_ID, LANGUAGE_ID, LANGUAGE NAME — logistics and locale.
- SECURE_EVENT_FLAG, PUBLIC_EVENT_FLAG, BOOK_INDEPENDENT_FLAG — behavioural flags, several decoded to YES_NO.
- EVENT_ID, ACTIVITY_VERSION_ID, BUSINESS_GROUP_ID, BUSINESS_GROUP_NAME — identifiers for joins and security.
Common Use Cases and Queries
The view is typically used for open-enrolment catalogues, event status dashboards, and downstream integration feeds. A representative query retrieving scheduled events and their decoded status is:
SELECT TITLE, COURSE_START_DATE, SCHEDULED_EVENT_STATUS, OTA_GET_PLACES_AVAILABLE, VENDOR_NAME, STANDARD_PRICE, CURRENCY_NAME FROM APPS.OTV_SCHEDULED_EVENTS WHERE BUSINESS_GROUP_ID = :p_bg_id ORDER BY COURSE_START_DATE;
Because the view already restricts results to currently open scheduled events with status N, P, or F, queries should not re-add those predicates; analysts typically filter further by TRAINING_CENTER_ID, LANGUAGE_ID, or SECURE_EVENT_FLAG. Note that the outer joins on vendor and currency cause NULLs where no vendor or currency is assigned. The reliance on TRUNC(SYSDATE) means the same query returns different rows on different days, which must be accounted for in scheduled extracts and reconciliation.
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
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: 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: 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.OTFV_SCHEDULED_TRAINING_EVENTS
12.2.2
-
VIEW: APPS.OTFV_SCHEDULED_TRAINING_EVENTS
12.1.1
-
eTRM - OTA Tables and Views
12.1.1
description: Currently not used ,
-
eTRM - OTA Tables and Views
12.2.2
description: Currently not used ,