Search Results training_center




Overview

APPS.OTFV_RESOURCES is a Business Intelligence System (BIS) view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2, with design data registered under the OTA (Oracle Training Administration) product. The view presents Suppliable Resources information, exposing the set of resources that can be supplied against training activities, including instructors, training rooms, and externally supplied materials. Because it consolidates resource definition attributes, supplier information, and scheduling cost data into a single flattened structure, the view is intended for reporting and integration rather than transactional data entry. Its Business Intelligence System classification indicates it was designed to support ad hoc query tools, discoverer workbooks, and downstream extraction layers without requiring consumers to join the underlying OTA tables manually.

Underlying Base Objects

The view is defined over several documented base objects. Resource definition data is drawn from OTA_RESOURCE_DEFINITIONS combined with the multilingual description source HR_ALL_ORGANIZATION_UNITS_TL, which supplies the business group organization name. Suppliable resource records, including supplier lead time, reference, cost, and capacity, derive from OTA_SUPPLIABLE_RESOURCES and its translation table OTA_SUPPLIABLE_RESOURCES_TL. Supplier names come from the PO_VENDORS view. Two packages, OTA_GENERAL and HR_BIS, are referenced to supply derived or formatted values such as the business group name and key flexfield segments exposed as _KF:RESOURCE_DEFINITIONS. No database object references APPS.OTFV_RESOURCES, confirming it is a terminal reporting object rather than a dependency for other code. The supplier and training center identifiers are carried through from the base tables as numeric foreign keys.

Key Columns

Common Use Cases and Queries

A frequent requirement is identifying all resources tied to a particular training center, which corresponds directly to the search term training_center. The following query returns resources, capacity, and supplier details for a specified center:

SELECT BUSINESS_GROUP_NAME
     , RESOURCE_NAME
     , RESOURCE_TYPE
     , TRAINING_CENTER
     , RESOURCE_CAPACITY
     , COST
     , COST_UNIT
     , CURRENCY
     , SUPPLIER_NAME
     , SUPPLIER_LEAD_TIME
  FROM APPS.OTFV_RESOURCES
 WHERE TRAINING_CENTER = :p_training_center
   AND SYSDATE BETWEEN RESOURCE_START_DATE AND RESOURCE_END_DATE;

Other common scenarios include reporting supplier-sourced resources for procurement planning, exporting cons