Search Results ota_delegate_bookings
Overview
The OTA_DELEGATE_BOOKINGS table is a core transactional entity within the Oracle E-Business Suite Learning Management (OTA) module, specifically for versions 12.1.1 and 12.2.2. It serves as the primary repository for recording and managing student or delegate enrollments. Each row in this table represents a single delegate's booking for a specific learning event, which can be a scheduled class, a program, or a one-time event. As the central record of enrollment, it is fundamental to the training lifecycle, tracking a delegate's participation from initial booking through completion. Its integrity is critical for downstream processes in finance, resource planning, and training history reporting.
Key Information Stored
The table's structure is designed to link a delegate to an event and track the status and financial aspects of the booking. While the full column list is not detailed in the provided metadata, the defined keys reveal critical data points. The primary identifier is the BOOKING_ID. The table also enforces uniqueness on LINE_ID and QUOTE_LINE_ID, indicating its integration with order management or quoting systems, where a booking may originate from an order line or a sales quote. Essential foreign key relationships stored in the table include the EVENT_ID, linking to OTA_EVENTS to identify the specific training offering, and the BOOKING_STATUS_TYPE_ID, linking to OTA_BOOKING_STATUS_TYPES to track the enrollment's current state (e.g., Provisional, Confirmed, Attended, Cancelled).
Common Use Cases and Queries
This table is central to numerous operational and analytical processes. Common use cases include generating class rosters, calculating instructor utilization, processing cancellations and refunds, and reporting on training completion rates. For reporting, it is frequently joined with delegate (PER_ALL_PEOPLE_F), event (OTA_EVENTS), and status type (OTA_BOOKING_STATUS_TYPES) tables. A typical query to list all confirmed bookings for a specific event would be:
- SELECT d.BOOKING_ID, p.FULL_NAME, e.EVENT_NUMBER FROM OTA_DELEGATE_BOOKINGS d, PER_ALL_PEOPLE_F p, OTA_EVENTS e WHERE d.EVENT_ID = e.EVENT_ID AND d.DELEGATE_PERSON_ID = p.PERSON_ID AND d.BOOKING_STATUS_TYPE_ID = (SELECT BOOKING_STATUS_TYPE_ID FROM OTA_BOOKING_STATUS_TYPES WHERE STATUS_CODE = 'CONFIRMED') AND e.EVENT_ID = :p_event_id;
Another critical pattern involves tracing the financial lifecycle by joining with OTA_FINANCE_LINES to assess invoicing status.
Related Objects
The OTA_DELEGATE_BOOKINGS table is a hub within the OTA schema, with several key dependencies. As per the metadata, it is referenced by child tables that manage related processes: OTA_BOOKING_STATUS_HISTORIES for auditing status changes, OTA_FINANCE_LINES for financial transactions, OTA_RESOURCE_ALLOCATIONS for linking instructors and facilities, and OTA_TRAINING_PLAN_COSTS for budget tracking. It has mandatory foreign key relationships to parent tables OTA_EVENTS and OTA_BOOKING_STATUS_TYPES. For data maintenance, it is typically accessed via standard Oracle Learning Management APIs and forms, rather than through direct DML operations, to preserve business logic and data integrity.
-
Table: OTA_DELEGATE_BOOKINGS
12.2.2
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_DELEGATE_BOOKINGS, object_name:OTA_DELEGATE_BOOKINGS, status:VALID, product: OTA - Learning Management , description: An student booking (delegate booking) records an enrollment onto a scheduled, program or one time event. , implementation_dba_data: OTA.OTA_DELEGATE_BOOKINGS ,
-
Table: OTA_DELEGATE_BOOKINGS
12.1.1
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_DELEGATE_BOOKINGS, object_name:OTA_DELEGATE_BOOKINGS, status:VALID, product: OTA - Learning Management , description: An student booking (delegate booking) records an enrollment onto a scheduled, program or one time event. , implementation_dba_data: OTA.OTA_DELEGATE_BOOKINGS ,
-
View: OTA_CTRNG_HISTORIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_CTRNG_HISTORIES_V, object_name:OTA_CTRNG_HISTORIES_V, status:VALID, product: OTA - Learning Management , description: This view is used as the data source for the combined training history displayed in the training histories form. (OTA_DELEGATE_BOOKINGS - "HISTORY" button) , implementation_dba_data: APPS.OTA_CTRNG_HISTORIES_V ,
-
View: OTA_CTRNG_HISTORIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_CTRNG_HISTORIES_V, object_name:OTA_CTRNG_HISTORIES_V, status:VALID, product: OTA - Learning Management , description: This view is used as the data source for the combined training history displayed in the training histories form. (OTA_DELEGATE_BOOKINGS - "HISTORY" button) , implementation_dba_data: APPS.OTA_CTRNG_HISTORIES_V ,
-
Table: OTA_BOOKING_STATUS_HISTORIES
12.1.1
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_BOOKING_STATUS_HISTORIES, object_name:OTA_BOOKING_STATUS_HISTORIES, status:VALID, product: OTA - Learning Management , description: A booking status history records status of changes to a student enrollment. , implementation_dba_data: OTA.OTA_BOOKING_STATUS_HISTORIES ,
-
Table: OTA_BOOKING_STATUS_HISTORIES
12.2.2
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_BOOKING_STATUS_HISTORIES, object_name:OTA_BOOKING_STATUS_HISTORIES, status:VALID, product: OTA - Learning Management , description: A booking status history records status of changes to a student enrollment. , implementation_dba_data: OTA.OTA_BOOKING_STATUS_HISTORIES ,
-
Table: OTA_RESOURCE_ALLOCATIONS
12.1.1
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_RESOURCE_ALLOCATIONS, object_name:OTA_RESOURCE_ALLOCATIONS, status:VALID, product: OTA - Learning Management , description: A resource allocation records a supplied resource to a student on an event. , implementation_dba_data: OTA.OTA_RESOURCE_ALLOCATIONS ,
-
Table: OTA_FINANCE_LINES
12.1.1
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_FINANCE_LINES, object_name:OTA_FINANCE_LINES, status:VALID, product: OTA - Learning Management , description: A finance line records each financial transaction with a customer or supplier. , implementation_dba_data: OTA.OTA_FINANCE_LINES ,
-
Table: OTA_FINANCE_LINES
12.2.2
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_FINANCE_LINES, object_name:OTA_FINANCE_LINES, status:VALID, product: OTA - Learning Management , description: A finance line records each financial transaction with a customer or supplier. , implementation_dba_data: OTA.OTA_FINANCE_LINES ,
-
Table: OTA_TRAINING_PLAN_COSTS
12.2.2
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_TRAINING_PLAN_COSTS, object_name:OTA_TRAINING_PLAN_COSTS, status:VALID, product: OTA - Learning Management , description: A plan cost is a recorded measure against the training plan. , implementation_dba_data: OTA.OTA_TRAINING_PLAN_COSTS ,
-
Table: OTA_BOOKING_STATUS_TYPES
12.2.2
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_BOOKING_STATUS_TYPES, object_name:OTA_BOOKING_STATUS_TYPES, status:VALID, product: OTA - Learning Management , description: Booking status types contain a list of user-defined enrollment statuses, along with their corresponding system statuses. , implementation_dba_data: OTA.OTA_BOOKING_STATUS_TYPES ,
-
Table: OTA_RESOURCE_ALLOCATIONS
12.2.2
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_RESOURCE_ALLOCATIONS, object_name:OTA_RESOURCE_ALLOCATIONS, status:VALID, product: OTA - Learning Management , description: A resource allocation records a supplied resource to a student on an event. , implementation_dba_data: OTA.OTA_RESOURCE_ALLOCATIONS ,
-
View: OTA_TRAINING_COST_LEVELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_TRAINING_COST_LEVELS_V, object_name:OTA_TRAINING_COST_LEVELS_V, status:VALID, product: OTA - Learning Management , implementation_dba_data: APPS.OTA_TRAINING_COST_LEVELS_V ,
-
Table: OTA_TRAINING_PLAN_COSTS
12.1.1
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_TRAINING_PLAN_COSTS, object_name:OTA_TRAINING_PLAN_COSTS, status:VALID, product: OTA - Learning Management , description: A plan cost is a recorded measure against the training plan. , implementation_dba_data: OTA.OTA_TRAINING_PLAN_COSTS ,
-
Table: OTA_BOOKING_STATUS_TYPES
12.1.1
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_BOOKING_STATUS_TYPES, object_name:OTA_BOOKING_STATUS_TYPES, status:VALID, product: OTA - Learning Management , description: Booking status types contain a list of user-defined enrollment statuses, along with their corresponding system statuses. , implementation_dba_data: OTA.OTA_BOOKING_STATUS_TYPES ,
-
View: OTA_TRAINING_COST_LEVELS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_TRAINING_COST_LEVELS_V, object_name:OTA_TRAINING_COST_LEVELS_V, status:VALID, product: OTA - Learning Management , implementation_dba_data: APPS.OTA_TRAINING_COST_LEVELS_V ,
-
Table: OTA_EVENTS
12.2.2
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_EVENTS, object_name:OTA_EVENTS, status:VALID, product: OTA - Learning Management , description: An event can be scheduled, one time, developmental, program or session. , implementation_dba_data: OTA.OTA_EVENTS ,
-
Table: OTA_EVENTS
12.1.1
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_EVENTS, object_name:OTA_EVENTS, status:VALID, product: OTA - Learning Management , description: An event can be scheduled, one time, developmental, program or session. , implementation_dba_data: OTA.OTA_EVENTS ,
-
View: OTFV_ENROLLMENT_STATUS_HISTORY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_ENROLLMENT_STATUS_HISTORY, object_name:OTFV_ENROLLMENT_STATUS_HISTORY, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_ENROLLMENT_STATUS_HISTORY ,
-
View: OTFV_ENROLLMENT_STATUS_HISTORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_ENROLLMENT_STATUS_HISTORY, object_name:OTFV_ENROLLMENT_STATUS_HISTORY, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_ENROLLMENT_STATUS_HISTORY ,
-
View: OTA_LETTER_REQUEST_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_LETTER_REQUEST_LINES_V, object_name:OTA_LETTER_REQUEST_LINES_V, status:VALID, product: OTA - Learning Management , description: View to list all the letter request lines generated for Student Enrollments , implementation_dba_data: APPS.OTA_LETTER_REQUEST_LINES_V ,
-
View: OTFV_TOTAL_ENROLLMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_TOTAL_ENROLLMENTS, object_name:OTFV_TOTAL_ENROLLMENTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_TOTAL_ENROLLMENTS ,
-
View: OTA_LETTER_REQUEST_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_LETTER_REQUEST_LINES_V, object_name:OTA_LETTER_REQUEST_LINES_V, status:VALID, product: OTA - Learning Management , description: View to list all the letter request lines generated for Student Enrollments , implementation_dba_data: APPS.OTA_LETTER_REQUEST_LINES_V ,
-
View: OTFV_TOTAL_ENROLLMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_TOTAL_ENROLLMENTS, object_name:OTFV_TOTAL_ENROLLMENTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_TOTAL_ENROLLMENTS ,
-
View: OTFV_TRAINING_AMOUNT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_TRAINING_AMOUNT, object_name:OTFV_TRAINING_AMOUNT, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_TRAINING_AMOUNT ,
-
View: OTFV_TRAINING_AMOUNT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_TRAINING_AMOUNT, object_name:OTFV_TRAINING_AMOUNT, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_TRAINING_AMOUNT ,
-
View: OTFV_COST_TRANSFER
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_COST_TRANSFER, object_name:OTFV_COST_TRANSFER, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_COST_TRANSFER ,
-
View: OTA_EVENT_ASSOCIAT_BILLING_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_EVENT_ASSOCIAT_BILLING_V, object_name:OTA_EVENT_ASSOCIAT_BILLING_V, status:VALID, product: OTA - Learning Management , description: View to show the Finance information related to an Event Association , implementation_dba_data: APPS.OTA_EVENT_ASSOCIAT_BILLING_V ,
-
View: OTFV_COST_TRANSFER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_COST_TRANSFER, object_name:OTFV_COST_TRANSFER, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_COST_TRANSFER ,
-
View: OTA_EVENT_ASSOCIAT_BILLING_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_EVENT_ASSOCIAT_BILLING_V, object_name:OTA_EVENT_ASSOCIAT_BILLING_V, status:VALID, product: OTA - Learning Management , description: View to show the Finance information related to an Event Association , implementation_dba_data: APPS.OTA_EVENT_ASSOCIAT_BILLING_V ,
-
View: OTFV_COMBINED_TRAINING_HISTORY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_COMBINED_TRAINING_HISTORY, object_name:OTFV_COMBINED_TRAINING_HISTORY, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_COMBINED_TRAINING_HISTORY ,
-
View: OTFV_COMBINED_TRAINING_HISTORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_COMBINED_TRAINING_HISTORY, object_name:OTFV_COMBINED_TRAINING_HISTORY, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_COMBINED_TRAINING_HISTORY ,
-
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: OTFV_EXT_TRAINING_EVENT_ENROLS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_EXT_TRAINING_EVENT_ENROLS, object_name:OTFV_EXT_TRAINING_EVENT_ENROLS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_EXT_TRAINING_EVENT_ENROLS ,
-
View: OTFV_EXT_TRAINING_EVENT_ENROLS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_EXT_TRAINING_EVENT_ENROLS, object_name:OTFV_EXT_TRAINING_EVENT_ENROLS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_EXT_TRAINING_EVENT_ENROLS ,
-
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: OTFV_ENROLLED_EVENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_ENROLLED_EVENTS, object_name:OTFV_ENROLLED_EVENTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_ENROLLED_EVENTS ,
-
View: OTFV_ENROLLED_EVENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_ENROLLED_EVENTS, object_name:OTFV_ENROLLED_EVENTS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_ENROLLED_EVENTS ,
-
View: OTFV_INT_TRAINING_EVENT_ENROLS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_INT_TRAINING_EVENT_ENROLS, object_name:OTFV_INT_TRAINING_EVENT_ENROLS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_INT_TRAINING_EVENT_ENROLS ,
-
View: OTFV_INT_TRAINING_EVENT_ENROLS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_INT_TRAINING_EVENT_ENROLS, object_name:OTFV_INT_TRAINING_EVENT_ENROLS, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_INT_TRAINING_EVENT_ENROLS ,
-
View: OTA_TRAINING_PLAN_COSTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_TRAINING_PLAN_COSTS_V, object_name:OTA_TRAINING_PLAN_COSTS_V, status:VALID, product: OTA - Learning Management , implementation_dba_data: APPS.OTA_TRAINING_PLAN_COSTS_V ,
-
View: OTA_TRAINING_PLAN_COSTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_TRAINING_PLAN_COSTS_V, object_name:OTA_TRAINING_PLAN_COSTS_V, status:VALID, product: OTA - Learning Management , implementation_dba_data: APPS.OTA_TRAINING_PLAN_COSTS_V ,
-
View: OTFV_FINANCE_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_FINANCE_LINES, object_name:OTFV_FINANCE_LINES, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_FINANCE_LINES ,
-
View: OTFV_FINANCE_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_FINANCE_LINES, object_name:OTFV_FINANCE_LINES, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_FINANCE_LINES ,
-
View: OTA_FINANCE_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_FINANCE_LINES_V, object_name:OTA_FINANCE_LINES_V, status:VALID, product: OTA - Learning Management , description: View to list all information for Finance Lines. , implementation_dba_data: APPS.OTA_FINANCE_LINES_V ,
-
View: OTA_FINANCE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_FINANCE_LINES_V, object_name:OTA_FINANCE_LINES_V, status:VALID, product: OTA - Learning Management , description: View to list all information for Finance Lines. , implementation_dba_data: APPS.OTA_FINANCE_LINES_V ,
-
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 ,