Search Results tpl_type




Overview

APPS.OTA_BOOKING_DEALS_V is a reporting and integration view within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 ETRM (Enterprise Training Resource Management) module, which is part of Oracle Learning Management. It presents booking deal records — negotiated agreements that govern how a customer purchases training places at a discounted rate — in a denormalized, human-readable form. Because the view joins and decodes reference data, callers do not need to resolve lookup codes, party identifiers, or price list types themselves.

The view is particularly relevant to searches for cus_name, since it exposes a CUS_NAME column derived from HZ_PARTIES.PARTY_NAME, truncated to 50 characters via SUBSTRB. This allows reports and interfaces to display the customer name directly without joining to the trading community model (TCM) tables. The view also computes runtime attributes through the OTA_TBD_API package, such as tickets-for-learning balances, giving consumers a consolidated snapshot of each booking deal.

Underlying Base Objects

The view is defined over the following documented base objects, all referenced through APPS synonyms:

In short, the view joins booking deal headers to pricing, event, customer, and user reference data, then layers lookup decoding and API-derived calculations on top.

Key Columns

Common Use Cases and Queries

Typical scenarios include listing active booking deals by customer, reconciling tickets-for-learning balances, and exporting deal terms to external systems. A straightforward query supporting the cus_name search is:

  • SELECT booking_deal_id, name, cus_name, tbd_type_meaning, tpl_name, discount_percentage, number_of_places FROM apps.ota_booking_deals_v WHERE cus_name LIKE :customer_name;
  • SELECT cus_name, tfl_purchased, tfl_balance, tfl_flag FROM apps.ota_booking_deals_v WHERE tfl_flag = 'Y';
  • SELECT booking_deal_id, cus_name, evt_title, start_date, end_date, currency_code FROM apps.ota_booking_deals_v WHERE start_date >= :from_date AND end_date <= :to_date ORDER BY cus_name;

Because CUS_NAME, lookup meanings, and TFL calculations are already resolved, the view simplifies both ad hoc reporting and integration extracts across EBS 12.1.1 and 12.2.2.