Search Results ota_suppliable_resources_v
Overview
OTA_SUPPLIABLE_RESOURCES_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the OTA (Learning Management) product. Its documented purpose is to list information about suppliable resources — the external and internal suppliers, trainers, training centers, and vendor-provided materials that can be attached to a learning offering or class. In Oracle EBS 12.1.1 and 12.2.2 the object carries a status of VALID and is exposed to reporting, integration, and extension code rather than being maintained directly by end users.
The view is a denormalized presentation layer over the suppliable resources entity. It resolves surrogate keys into human-readable values by joining descriptive and lookup tables, so that a single query can return the supplier name, resource description, consumable indicator meaning, resource type meaning, and currency name alongside the base attributes. This makes it suitable for concurrent program data sources, BI Publisher reports, custom OAF or Forms regions, and inbound/outbound interface extracts.
Because the view joins multilingual and lookup objects, it is language-sensitive. The supplied resource name and special instructions are sourced from the translation table filtered by the session language, while the consumable and resource type attributes are resolved against HR_LOOKUPS.
Underlying Base Objects
The documented base objects referenced by the view are:
- OTA_SUPPLIABLE_RESOURCES (synonym) — the primary transactional table, aliased TSR, holding supplier, cost, lead time, and descriptive flexfield columns.
- OTA_SUPPLIABLE_RESOURCES_TL (synonym) — the translation table, aliased SRT, supplying the language-specific resource name and special instructions.
- OTA_RESOURCE_DEFINITIONS (synonym) — aliased RES, providing the resource definition context and the ID_FLEX_NUM used to interpret descriptive flexfield segments.
- PO_VENDORS (view) — aliased VEN, providing VENDOR_NAME; joined with an outer join (+) so that internal resources without a vendor are still returned.
- HR_LOOKUPS (view) — aliased twice, CF_LOOK for the 'YES_NO' consumable flag and RT_LOOK for the 'RESOURCE_TYPE' lookup, converting lookup codes into meanings.
- OTA_GENERAL (package) — supplies the FND_CURRENCY_NAME function used to derive the currency name.
- HR_API (package) — referenced for the standard HR security and utility routines used elsewhere in the suppliable resources stack.
Key Columns
- ROW_ID — the physical row identifier from the base table, useful for direct row access.
- SUPPLIED_RESOURCE_ID — primary key of the suppliable resource record.
- SUPPLIED_RESOURCE_NAME — language-specific name from the translation table.
- VENDOR_ID / VENDOR_NAME — supplier of the resource; VENDOR_NAME is null for internal resources.
- BUSINESS_GROUP_ID — multi-organization / HR business group context.
- RESOURCE_DEFINITION_ID — link to the resource definition; ID_FLEX_NUM identifies the descriptive flexfield structure.
- CONSUMABLE_FLAG and its MEANING — indicates whether the resource is consumed on use, resolved to Yes/No.
- RESOURCE_TYPE and its MEANING — classification of the resource derived from the RESOURCE_TYPE lookup.
- COST, COST_UNIT, CURRENCY_CODE and currency name — pricing attributes for the supplied resource.
- START_DATE / END_DATE — effective dating of the resource record.
- LEAD_TIME, SUPPLIER_REFERENCE, INTERNAL_ADDRESS_LINE, COMMENTS — operational attributes for scheduling and procurement.
- TRAINING_CENTER_ID, LOCATION_ID, TRAINER_ID — identifiers used to resolve the delivery context of the resource.
- TSR_INFORMATION_CATEGORY and TSR_INFORMATION1..20 — descriptive flexfield segments.
- Audit columns — LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATED_BY, CREATION_DATE.
Common Use Cases and Queries
Typical scenarios include enumerating all suppliable resources for a business group, identifying vendor-supplied consumables, extracting cost and lead-time data for procurement planning, and driving class or offering scheduling where trainers and training centers must be resolved by ID.
The following query lists active vendor-supplied resources with resolved lookup meanings:
SELECT supplied_resource_id, supplied_resource_name, vendor_name, resource_type_meaning, consumable_meaning, cost, currency_code, start_date, end_date FROM ota_suppliable_resources_v WHERE business_group_id = :p_bg_id AND vendor_id IS NOT NULL AND TRUNC(SYSDATE) BETWEEN start_date AND NVL(end_date, TRUNC(SYSDATE)+1) ORDER BY supplied_resource_name;
A second common pattern resolves trainer and center attributes for a specific offering, and a third extracts all consumable resources for a business group to feed an external cost model. Because the view embeds the outer join to PO_VENDORS, queries that must distinguish internal from external resources should test VENDOR_ID for null. Date-driven filters are advisable, since the view does not itself restrict rows to the current effective period.
-
View: OTA_SUPPLIABLE_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_SUPPLIABLE_RESOURCES_V, object_name:OTA_SUPPLIABLE_RESOURCES_V, status:VALID, product: OTA - Learning Management , description: View to list information about Suppliable Resources. , implementation_dba_data: APPS.OTA_SUPPLIABLE_RESOURCES_V ,
-
View: OTA_SUPPLIABLE_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_SUPPLIABLE_RESOURCES_V, object_name:OTA_SUPPLIABLE_RESOURCES_V, status:VALID, product: OTA - Learning Management , description: View to list information about Suppliable Resources. , implementation_dba_data: APPS.OTA_SUPPLIABLE_RESOURCES_V ,
-
SYNONYM: PUBLIC.OTA_SUPPLIABLE_RESOURCES_V
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:OTA_SUPPLIABLE_RESOURCES_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.OTA_SUPPLIABLE_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_SUPPLIABLE_RESOURCES_V, object_name:OTA_SUPPLIABLE_RESOURCES_V, status:VALID,
-
SYNONYM: APPS.OTA_SUPPLIABLE_RESOURCES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OTA_SUPPLIABLE_RESOURCES_TL, status:VALID,
-
SYNONYM: APPS.OTA_RESOURCE_DEFINITIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OTA_RESOURCE_DEFINITIONS, status:VALID,
-
SYNONYM: APPS.OTA_RESOURCE_DEFINITIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OTA_RESOURCE_DEFINITIONS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.OTA_SUPPLIABLE_RESOURCES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OTA_SUPPLIABLE_RESOURCES_TL, status:VALID,
-
SYNONYM: APPS.OTA_SUPPLIABLE_RESOURCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OTA_SUPPLIABLE_RESOURCES, status:VALID,
-
SYNONYM: APPS.OTA_SUPPLIABLE_RESOURCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OTA_SUPPLIABLE_RESOURCES, status:VALID,
-
PACKAGE: APPS.OTA_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OTA_GENERAL, status:VALID,
-
VIEW: APPS.OTA_SUPPLIABLE_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_SUPPLIABLE_RESOURCES_V, object_name:OTA_SUPPLIABLE_RESOURCES_V, status:VALID,
-
PACKAGE: APPS.OTA_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OTA_GENERAL, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.OTA_FINANCE_LINES_V
12.2.2
-
VIEW: APPS.OTA_FINANCE_LINES_V
12.1.1
-
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_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: APPS.PO_VENDORS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
VIEW: APPS.HR_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOOKUPS, object_name:HR_LOOKUPS, status:VALID,
-
VIEW: APPS.HR_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOOKUPS, object_name:HR_LOOKUPS, status:VALID,
-
eTRM - OTA Tables and Views
12.1.1
description: Currently not used ,
-
eTRM - OTA Tables and Views
12.2.2
description: Currently not used ,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
eTRM - OTA Tables and Views
12.1.1
description: Currently not used ,
-
12.2.2 DBA Data
12.2.2
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - OTA Tables and Views
12.2.2
description: Currently not used ,
-
PACKAGE: APPS.HR_API
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_API, status:VALID,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
PACKAGE: APPS.HR_API
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_API, status:VALID,
-
eTRM - PER Tables and Views
12.2.2
description: Table to store NQF Training info for a person ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
eTRM - PER Tables and Views
12.2.2
description: Table to store NQF Training info for a person ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,