Search Results pa_res_types_tl
Overview
The PA_RES_TYPES_TL table is a core translation table within the Oracle E-Business Suite Projects (PA) module. It functions as the repository for multilingual descriptions of resource types, enabling the application to support global deployments. This table operates in conjunction with its base table, PA_RES_TYPES_B, which holds the language-independent, transactional data. The TL (Translation) table's primary role is to store the user-facing, translated names and descriptions for resource types, which are critical for defining the labor and non-labor resources that can be assigned to project tasks. Its existence is fundamental to the EBS Multi-Org and Multi-Language architecture, allowing a single installation to present data in multiple languages based on user preferences.
Key Information Stored
The table's structure is designed to manage translated text for each supported language. Its primary key is a composite of RES_TYPE_ID and LANGUAGE, ensuring a unique translation entry per resource type per language. Key columns include RES_TYPE_ID, which is the foreign key linking to the base resource type definition in PA_RES_TYPES_B. The LANGUAGE column holds the language code (e.g., 'US', 'FR') and is a foreign key to FND_LANGUAGES. The SOURCE_LANG column, also referencing FND_LANGUAGES, indicates the original language in which the data was entered, which is typically the installation base language. The most critical user-facing columns are NAME and DESCRIPTION, which store the translated text for the resource type's label and explanatory details, respectively.
Common Use Cases and Queries
This table is primarily accessed by the application's user interface to display resource type names in reports, lists of values (LOVs), and data entry forms according to the session language. A common reporting requirement is to extract a list of all resource types with their descriptions in a specific language. For example, to retrieve all active resource types in French, one might join to the base table for status and the translation table for the French text. A typical SQL pattern is:
- SELECT b.RES_TYPE_ID, tl.NAME, tl.DESCRIPTION
- FROM PA_RES_TYPES_B b, PA_RES_TYPES_TL tl
- WHERE b.RES_TYPE_ID = tl.RES_TYPE_ID
- AND tl.LANGUAGE = userenv('LANG')
- AND b.END_DATE_ACTIVE IS NULL;
Data maintenance is typically performed via the Oracle Applications' translation forms or APIs, not via direct SQL updates, to maintain integrity with the seed data and base tables.
Related Objects
PA_RES_TYPES_TL has defined foreign key relationships with several key application objects, as documented in the ETRM metadata. Its primary relationship is with the base table PA_RES_TYPES_B via the RES_TYPE_ID column. This is a critical dependency, as every record in the TL table must correspond to a valid record in the base table. Furthermore, it has two foreign key relationships with the application's language table, FND_LANGUAGES. One relationship is via the LANGUAGE column to validate the translation language code, and another is via the SOURCE_LANG column to validate the code for the original source language of the data. These relationships enforce referential integrity and ensure that translations are only stored for installed and active languages within the EBS instance.
-
Table: PA_RES_TYPES_TL
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_RES_TYPES_TL, object_name:PA_RES_TYPES_TL, status:VALID, product: PA - Projects , description: This table stores the translated resource type information. , implementation_dba_data: PA.PA_RES_TYPES_TL ,
-
Table: PA_RES_TYPES_TL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_RES_TYPES_TL, object_name:PA_RES_TYPES_TL, status:VALID, product: PA - Projects , description: This table stores the translated resource type information. , implementation_dba_data: PA.PA_RES_TYPES_TL ,
-
APPS.PA_RBS_ELEMENTS_PUB dependencies on PA_RES_TYPES_TL
12.1.1
-
APPS.PA_RES_TYPES_PVT dependencies on PA_RES_TYPES_TL
12.2.2
-
APPS.PA_RBS_ELEMENTS_PUB dependencies on PA_RES_TYPES_TL
12.2.2
-
APPS.PA_RES_TYPES_PVT dependencies on PA_RES_TYPES_TL
12.1.1
-
APPS.PA_RES_TYPES_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PA_RES_TYPES_PVT
12.1.1
-
APPS.PA_RES_TYPES_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PA_RES_TYPES_PVT
12.2.2
-
APPS.PA_RES_TYPES_PVT dependencies on FND_LANGUAGES
12.2.2
-
VIEW: PA.PA_RES_TYPES_TL#
12.2.2
owner:PA, object_type:VIEW, object_name:PA_RES_TYPES_TL#, status:VALID,
-
SYNONYM: APPS.PA_RES_TYPES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_RES_TYPES_TL, status:VALID,
-
VIEW: PA.PA_RES_TYPES_TL#
12.2.2
-
APPS.PA_RES_TYPES_PVT dependencies on FND_LANGUAGES
12.1.1
-
SYNONYM: APPS.PA_RES_TYPES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_RES_TYPES_TL, status:VALID,
-
TRIGGER: APPS.PA_RES_TYPES_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:PA_RES_TYPES_TL+, status:VALID,
-
VIEW: APPS.PA_RES_TYPES_VL
12.1.1
-
VIEW: APPS.PA_RES_TYPES_VL
12.2.2
-
TRIGGER: APPS.PA_RES_TYPES_TL+
12.2.2
-
TABLE: PA.PA_RES_TYPES_TL
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_RES_TYPES_TL, object_name:PA_RES_TYPES_TL, status:VALID,
-
FUNCTION: APPS.PA_RES_TYPES_TL=
12.2.2
-
APPS.PA_RES_TYPES_PVT dependencies on PA_RES_TYPES_B
12.2.2
-
TABLE: PA.PA_RES_TYPES_TL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_RES_TYPES_TL, object_name:PA_RES_TYPES_TL, status:VALID,
-
FUNCTION: APPS.PA_RES_TYPES_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:PA_RES_TYPES_TL=, status:VALID,
-
APPS.PA_RES_TYPES_PVT dependencies on PA_RES_TYPES_B
12.1.1
-
Table: PA_RES_TYPES_B
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_RES_TYPES_B, object_name:PA_RES_TYPES_B, status:VALID, product: PA - Projects , description: This table stores the resource type information. , implementation_dba_data: PA.PA_RES_TYPES_B ,
-
Table: PA_RES_TYPES_B
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_RES_TYPES_B, object_name:PA_RES_TYPES_B, status:VALID, product: PA - Projects , description: This table stores the resource type information. , implementation_dba_data: PA.PA_RES_TYPES_B ,
-
View: PA_RES_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_TYPES_VL, object_name:PA_RES_TYPES_VL, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_RES_TYPES_VL ,
-
View: PA_RES_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_TYPES_VL, object_name:PA_RES_TYPES_VL, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_RES_TYPES_VL ,
-
PACKAGE BODY: APPS.PA_RES_TYPES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_RES_TYPES_PVT, status:VALID,
-
PACKAGE BODY: APPS.PA_RES_TYPES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_RES_TYPES_PVT, status:VALID,
-
PACKAGE BODY: APPS.PA_RBS_ELEMENTS_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_RBS_ELEMENTS_PUB, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.PA_RBS_ELEMENTS_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_RBS_ELEMENTS_PUB, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.PA_RES_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_TYPES_VL, object_name:PA_RES_TYPES_VL, status:VALID,
-
VIEW: APPS.PA_RES_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_TYPES_VL, object_name:PA_RES_TYPES_VL, status:VALID,
-
Table: FND_LANGUAGES
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_LANGUAGES, object_name:FND_LANGUAGES, status:VALID, product: FND - Application Object Library , description: National dialects , implementation_dba_data: APPLSYS.FND_LANGUAGES ,
-
Table: FND_LANGUAGES
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_LANGUAGES, object_name:FND_LANGUAGES, status:VALID, product: FND - Application Object Library , description: National dialects , implementation_dba_data: APPLSYS.FND_LANGUAGES ,
-
APPS.PA_RBS_ELEMENTS_PUB SQL Statements
12.1.1
-
APPS.PA_RBS_ELEMENTS_PUB SQL Statements
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2