Search Results ams_categories_tl
Overview
The AMS_CATEGORIES_TL table is a core data object within the Oracle E-Business Suite Marketing (AMS) module, specifically designed to support multilingual implementations. It functions as a translation table, storing language-specific versions of descriptive attributes for marketing categories. Its primary role is to enable the display of category information, such as names, in a user's preferred language, a critical feature for global deployments. This table operates in tandem with its base table, AMS_CATEGORIES_B, which holds the language-independent structural and control data for category definitions. The existence of this TL (Translation) table is a standard architectural pattern in Oracle EBS, separating translatable descriptive flexfield and textual data from non-translatable business logic.
Key Information Stored
The table's structure is optimized for managing translated content. The most critical columns are those comprising its primary and unique keys, which enforce data integrity across languages. The CATEGORY_ID column is the foreign key linking each translated row to its corresponding master record in AMS_CATEGORIES_B. The LANGUAGE column identifies the language code (e.g., 'US' for American English) for the translation. The CATEGORY_NAME column holds the actual translated name of the category as it should appear in that specific language. Typically, this table would also include other translatable columns, such as DESCRIPTION, though the provided metadata explicitly confirms only CATEGORY_NAME. The primary key (CATEGORY_ID, LANGUAGE) ensures only one translation per language per category, while the unique key (LANGUAGE, CATEGORY_NAME) helps prevent duplicate category names within the same language.
Common Use Cases and Queries
The primary use case is retrieving category information in a user's session language for UI display, reports, and list of values (LOVs). A standard query joins this table to its base table and filters by the session's language setting. For example, to fetch all active category names in the current language for a report, a developer might use:
- SELECT b.STRUCTURE_ID, tl.CATEGORY_NAME FROM AMS_CATEGORIES_B b, AMS_CATEGORIES_TL tl WHERE b.CATEGORY_ID = tl.CATEGORY_ID AND tl.LANGUAGE = USERENV('LANG') AND b.ENABLED_FLAG = 'Y';
Another common scenario involves data migration or setup, where scripts must populate this table with translated values for each supported language after inserting base records into AMS_CATEGORIES_B. Administrators may also query this table to audit translation coverage, identifying categories missing translations for a key language.
Related Objects
AMS_CATEGORIES_TL has a direct and dependent relationship with the base table AMS_CATEGORIES_B, as defined by its sole documented foreign key. The relationship is maintained through the CATEGORY_ID column. This means every record in AMS_CATEGORIES_TL must correspond to a valid CATEGORY_ID in AMS_CATEGORIES_B. The table is also intrinsically linked to the FND_LANGUAGES table, which supplies the valid values for its LANGUAGE column. In application logic, data is typically accessed via public APIs or views provided by the Marketing module, which handle the complexity of joining the base and translation tables automatically based on the user's language context.
-
Table: AMS_CATEGORIES_TL
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_CATEGORIES_TL, object_name:AMS_CATEGORIES_TL, status:VALID, product: AMS - Marketing , description: This table stores all translated columns for category definition. , implementation_dba_data: AMS.AMS_CATEGORIES_TL ,
-
Table: AMS_CATEGORIES_TL
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_CATEGORIES_TL, object_name:AMS_CATEGORIES_TL, status:VALID, product: AMS - Marketing , description: This table stores all translated columns for category definition. , implementation_dba_data: AMS.AMS_CATEGORIES_TL ,
-
APPS.AMS_EVENTSCHEDULE_COPY_PVT dependencies on AMS_CATEGORIES_TL
12.1.1
-
APPS.AMS_EVENTSCHEDULE_COPY_PVT dependencies on AMS_CATEGORIES_TL
12.2.2
-
APPS.AMS_CATEGORIES_PKG dependencies on AMS_CATEGORIES_TL
12.1.1
-
APPS.AMS_EVENT_OBJECTS_COPY_PVT dependencies on AMS_CATEGORIES_TL
12.2.2
-
APPS.AMS_CATEGORY_PVT dependencies on AMS_CATEGORIES_TL
12.1.1
-
APPS.AMS_CPYUTILITY_PVT dependencies on AMS_CATEGORIES_TL
12.1.1
-
APPS.AMS_CATEGORIES_PKG dependencies on AMS_CATEGORIES_TL
12.2.2
-
APPS.AMS_CPYUTILITY_PVT dependencies on AMS_CATEGORIES_TL
12.2.2
-
APPS.AMS_EVENT_OBJECTS_COPY_PVT dependencies on AMS_CATEGORIES_TL
12.1.1
-
APPS.AMS_CATEGORY_PVT dependencies on AMS_CATEGORIES_TL
12.2.2
-
VIEW: AMS.AMS_CATEGORIES_TL#
12.2.2
owner:AMS, object_type:VIEW, object_name:AMS_CATEGORIES_TL#, status:VALID,
-
APPS.AMS_CATEGORIES_PKG SQL Statements
12.1.1
-
APPS.AMS_CATEGORIES_PKG SQL Statements
12.2.2
-
APPS.AMS_CATEGORY_PVT dependencies on DUAL
12.1.1
-
APPS.AMS_CATEGORIES_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.AMS_CATEGORY_PVT dependencies on DUAL
12.2.2
-
APPS.AMS_CATEGORIES_PKG dependencies on FND_LANGUAGES
12.2.2
-
VIEW: APPS.AMS_DELIVERABLES_INFO_V
12.1.1
-
TABLE: AMS.AMS_CATEGORIES_TL
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_CATEGORIES_TL, object_name:AMS_CATEGORIES_TL, status:VALID,
-
VIEW: APPS.AMS_P_DELIVERABLES_V
12.1.1
-
VIEW: AMS.AMS_CATEGORIES_TL#
12.2.2
-
SYNONYM: APPS.AMS_CATEGORIES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMS_CATEGORIES_TL, status:VALID,
-
SYNONYM: APPS.AMS_CATEGORIES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AMS_CATEGORIES_TL, status:VALID,
-
VIEW: APPS.AMS_DELIVERABLES_INFO_V
12.2.2
-
VIEW: APPS.AMS_P_DELIVERABLES_V
12.2.2
-
APPS.AMS_CATEGORY_PVT SQL Statements
12.2.2
-
APPS.AMS_CATEGORY_PVT SQL Statements
12.1.1
-
TRIGGER: APPS.AMS_CATEGORIES_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:AMS_CATEGORIES_TL+, status:VALID,
-
TRIGGER: APPS.AMS_CATEGORIES_TL+
12.2.2
-
VIEW: APPS.AMS_CATEGORIES_VL
12.2.2
-
TABLE: AMS.AMS_CATEGORIES_TL
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_CATEGORIES_TL, object_name:AMS_CATEGORIES_TL, status:VALID,
-
VIEW: APPS.AMS_CATEGORIES_VL
12.1.1
-
PACKAGE BODY: APPS.AMS_CATEGORIES_PKG
12.1.1
-
PACKAGE BODY: APPS.AMS_CATEGORIES_PKG
12.2.2
-
APPS.AMS_EVENT_OBJECTS_COPY_PVT dependencies on AMS_DELIVERABLES_ALL_TL
12.2.2
-
View: AMS_P_DELIVERABLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_DELIVERABLES_V, object_name:AMS_P_DELIVERABLES_V, status:VALID, product: AMS - Marketing , description: This public view returns the marketing deliverable information. , implementation_dba_data: APPS.AMS_P_DELIVERABLES_V ,
-
APPS.AMS_EVENT_OBJECTS_COPY_PVT dependencies on AMS_OBJECT_ASSOCIATIONS
12.1.1
-
View: AMS_P_DELIVERABLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_P_DELIVERABLES_V, object_name:AMS_P_DELIVERABLES_V, status:VALID, product: AMS - Marketing , description: This public view returns the marketing deliverable information. , implementation_dba_data: APPS.AMS_P_DELIVERABLES_V ,
-
APPS.AMS_EVENTSCHEDULE_COPY_PVT dependencies on AMS_DELIVERABLES_ALL_B
12.2.2
-
APPS.AMS_EVENTSCHEDULE_COPY_PVT dependencies on AMS_DELIVERABLES_ALL_TL
12.1.1
-
APPS.AMS_EVENT_OBJECTS_COPY_PVT dependencies on AMS_DELIVERABLES_ALL_TL
12.1.1
-
APPS.AMS_EVENTSCHEDULE_COPY_PVT dependencies on AMS_DELIVERABLES_ALL_TL
12.2.2
-
APPS.AMS_EVENTSCHEDULE_COPY_PVT dependencies on AMS_OBJECT_ASSOCIATIONS
12.1.1
-
View: AMS_DELIVERABLES_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DELIVERABLES_INFO_V, object_name:AMS_DELIVERABLES_INFO_V, status:VALID, product: AMS - Marketing , implementation_dba_data: APPS.AMS_DELIVERABLES_INFO_V ,
-
APPS.AMS_CATEGORY_PVT dependencies on FND_LANGUAGES
12.1.1
-
APPS.AMS_EVENT_OBJECTS_COPY_PVT dependencies on AMS_DELIVERABLES_ALL_B
12.1.1
-
APPS.AMS_EVENTSCHEDULE_COPY_PVT dependencies on AMS_DELIVERABLES_ALL_B
12.1.1
-
APPS.AMS_EVENT_OBJECTS_COPY_PVT dependencies on AMS_DELIVERABLES_ALL_B
12.2.2