Search Results online_flag




Overview

OTA_CATEGORY_USAGES is a Learning Management (OTA) table in the Oracle E-Business Suite 12.1.1 / 12.2.2 schema. It defines the category usages that indicate the role in which an activity category is used. In practice, the table acts as a reference or lookup mechanism that determines how a given activity category participates in the OTA training model, such as distinguishing categories used for classes, offerings, or other learning constructs. Each row captures a distinct category-usage definition scoped to a business group.

From a data modeling perspective, the heuristic Data Vault classification mined from the foreign-key structure is standalone. This suggests the table can be modeled as an independent hub-like reference entity, since it holds a stable business definition of category usage rather than acting as a transactional link or a dependency satellite. Its 39 documented columns include the standard EBS audit, multi-org, and descriptive-flexfield (DDF) attribute set.

Key Information Stored

The most significant columns documented for OTA_CATEGORY_USAGES are:

Common Use Cases and Queries

The table is queried whenever OTA activity definitions, event associations, or activity-category inclusions must resolve the role of a category. Typical reporting includes listing active category usages by business group, validating configuration before publishing learning activities, and driving the LOV values available in OTA setup forms.

A representative query retrieving active usages for a business group:

  • SELECT category_usage_id, category, type, start_date_active, end_date_active FROM ota_category_usages WHERE business_group_id = :bg AND TRUNC(SYSDATE) BETWEEN start_date_active AND NVL(end_date_active, TRUNC(SYSDATE));

Joining to dependent activities to report configuration coverage:

  • SELECT cu.category_usage_id, cu.category, cu.type, ad.activity_definition_id FROM ota_category_usages cu, ota_activity_definitions ad WHERE ad.category_usage_id = cu.category_usage_id;

Related Objects

The following depend on OTA_CATEGORY_USAGES via documented foreign keys, joining on CATEGORY_USAGE_ID:

These relationships confirm that category usage definitions are referenced as a validation value set across activity, event association, and category inclusion entities in the OTA Learning Management module.