Search Results required_from
Overview
OTFV_EVENTS_WITH_VENUE is a read-only business view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the OTA (Oracle Learning Management) product family. The view functions as a business view template from which a flexfield view is generated, meaning it is primarily intended to expose event scheduling data in a flattened, reporting-ready form that can be extended through descriptive flexfield integration. It presents one row per resource booking of type venue ('V'), combining the parent learning event title with the name of the physical or supplied venue resource that has been reserved, together with booking-placement and status details. Because the view joins transactional booking data to resource master data and applies HR_BIS decode lookups for human-readable flag and status values, it is well suited to operational reporting on where and when a learning event is scheduled, and to integration scenarios where downstream systems require a consolidated event/venue feed without navigating the underlying normalized tables.
Underlying Base Objects
The view is defined over three principal base objects joined in a single SELECT, and it also invokes supporting packages and language-enabled synonyms.
- OTA_EVENTS — the event header, supplying EVENT_ID, OFFERING_ID, TITLE, and BUSINESS_GROUP_ID used in the business group security predicate.
- OTA_RESOURCE_BOOKINGS — the booking transaction, supplying RESOURCE_BOOKING_ID, STATUS, DATE_BOOKING_PLACED, REQUIRED_DATE_FROM, REQUIRED_DATE_TO, and PRIMARY_VENUE_FLAG.
- OTA_SUPPLIABLE_RESOURCES — the resource master, supplying SUPPLIED_RESOURCE_ID and NAME; the join constrains RESOURCE_TYPE = 'V' so only venue-type resources qualify.
- HR_BIS — a package whose BIS_DECODE_LOOKUP function converts status and flag codes into display values.
- OTA_GENERAL — a package providing GET_BUSINESS_GROUP_ID, used by NVL to restrict rows to the caller's operating business group.
The documented synonym list also references OTA_EVENTS_TL, OTA_SUPPLIABLE_RESOURCES_TL (translation tables underlying multilingual names), and the OTA_SUPPLIABLE_RESOURCES synonym. The view is defined WITH READ ONLY, so no DML is permitted against it.
Key Columns
- VENUE_NAME — the name of the supplied venue resource (TSR.NAME), the column most commonly searched for. Because it originates from a translatable resource table, it reflects the session language where translations exist.
- EVENT_TITLE — the title of the learning event (EVT.TITLE).
- PRIMARY_VENUE — decoded YES/NO indicator from the booking's primary venue flag, identifying the main venue among multiple bookings.
- BOOKING_STATUS — decoded value from the RESOURCE_BOOKING_STATUS lookup, expressing the state of the venue booking.
- DATE_BOOKING_PLACED / REQUIRED_FROM / REQUIRED_TO — when the booking was created and the requested booking window. Note that the documented column list shows DATE_OF_BOOKING while the view text aliases it DATE_BOOKING_PLACED; consumers should verify the actual alias in their release.
- RESOURCE_BOOKING_ID / SUPPLIED_RESOURCE_ID — keys for the booking and the venue resource.
- EVENT_ID / OFFERING_ID — keys linking back to the event and its offering.
Common Use Cases and Queries
Typical scenarios include venue utilization reporting, conflict checking across events, and exporting an event-to-venue map to scheduling systems. A basic query filters by venue name:
SELECT event_title, venue_name, primary_venue, booking_status, required_from, required_to FROM apps.otfv_events_with_venue WHERE venue_name LIKE '%CONFERENCE%';SELECT venue_name, COUNT(*) FROM apps.otfv_events_with_venue GROUP BY venue_name ORDER BY 2 DESC;SELECT event_title, venue_name, required_from, required_to FROM apps.otfv_events_with_venue WHERE event_id = :event_id AND primary_venue = 'Yes';
Run these in the APPS schema context (or with APPS synonyms) so the OTA_GENERAL business group predicate resolves correctly; otherwise rows outside the caller's business group are excluded, which can appear as missing data if the session is established under an unexpected group.
-
View: OTFV_EVENTS_WITH_VENUE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_EVENTS_WITH_VENUE, object_name:OTFV_EVENTS_WITH_VENUE, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_EVENTS_WITH_VENUE ,
-
View: OTFV_EVENTS_WITH_VENUE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_EVENTS_WITH_VENUE, object_name:OTFV_EVENTS_WITH_VENUE, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_EVENTS_WITH_VENUE ,
-
View: OTFV_EVENTS_WITH_TRAINER
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_EVENTS_WITH_TRAINER, object_name:OTFV_EVENTS_WITH_TRAINER, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_EVENTS_WITH_TRAINER ,
-
View: OTFV_EVENTS_WITH_TRAINER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_EVENTS_WITH_TRAINER, object_name:OTFV_EVENTS_WITH_TRAINER, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_EVENTS_WITH_TRAINER ,
-
View: OTFV_RESOURCES_BOOKED
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_RESOURCES_BOOKED, object_name:OTFV_RESOURCES_BOOKED, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_RESOURCES_BOOKED ,
-
View: OTFV_RESOURCES_BOOKED
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_RESOURCES_BOOKED, object_name:OTFV_RESOURCES_BOOKED, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_RESOURCES_BOOKED ,