Search Results ams_dm_targets_tl
Overview
The AMS_DM_TARGETS_TL table is a core data object within the Oracle E-Business Suite (EBS) Marketing (AMS) module, specifically for versions 12.1.1 and 12.2.2. As indicated by its name suffix '_TL', it is a translation table. Its primary function is to provide multi-lingual support for data mining targets. In Oracle EBS, data mining targets are entities used within marketing campaigns for predictive modeling and customer segmentation. This table stores the user-facing, translatable descriptions and names of these targets, enabling the application to present this information in the language of the user's session. It operates in conjunction with its base table, AMS_DM_TARGETS_B, which holds the non-translatable, structural data.
Key Information Stored
The table's structure is designed to support a one-to-many relationship between a base target definition and its multiple language entries. The documented primary key, consisting of TARGET_ID and LANGUAGE, enforces uniqueness for each language version of a target. While the full column list is not detailed in the provided metadata, standard Oracle EBS translation table conventions dictate the presence of several key columns. The TARGET_ID is the foreign key linking to the base table (AMS_DM_TARGETS_B). The LANGUAGE column stores the language code (e.g., 'US' for American English). Critically, the table will contain columns for the translated name (e.g., TARGET_NAME) and description (DESCRIPTION) of the data mining target. Additional standard columns typically include SOURCE_LANG, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, and LAST_UPDATE_DATE to track the origin and maintenance of each translation row.
Common Use Cases and Queries
The primary use case is retrieving target descriptions for reports and user interfaces in a specific language. Application logic automatically queries this table based on the user's session language setting. For custom reporting or data extraction, a developer must join this table to its base table to get a complete, language-specific view. A common SQL pattern is to use the NVL function with the LANGUAGE column to ensure a fallback if a translation is missing. For example, to retrieve all target names in French, with a fallback to the source language:
- SELECT b.TARGET_ID, NVL(tl.TARGET_NAME, b.TARGET_NAME) AS DISPLAY_NAME
- FROM AMS_DM_TARGETS_B b,
- AMS_DM_TARGETS_TL tl
- WHERE b.TARGET_ID = tl.TARGET_ID(+)
- AND tl.LANGUAGE(+) = USERENV('LANG');
Data maintenance use cases involve inserting or updating rows in this table via the standard Oracle Applications Translation form or through dedicated APIs whenever a new language is added for a target definition.
Related Objects
The table has a direct and critical dependency on the AMS_DM_TARGETS_B table, as defined by the documented foreign key relationship. The join is performed on the TARGET_ID column. This is a classic base/translation table pair in the Oracle Applications schema. The AMS_DM_TARGETS_TL table is referenced by the application's underlying views and APIs that serve the Marketing module's data mining and campaign setup interfaces. Any program logic or report that requires the descriptive text of a data mining target in a specific language will ultimately query this table. The primary key constraint AMS_DM_TARGETS_TL_PK ensures data integrity for these lookups.
-
Table: AMS_DM_TARGETS_TL
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_DM_TARGETS_TL, object_name:AMS_DM_TARGETS_TL, status:VALID, product: AMS - Marketing , description: Multi-lingual support table for data mining targets. , implementation_dba_data: AMS.AMS_DM_TARGETS_TL ,
-
Table: AMS_DM_TARGETS_TL
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_DM_TARGETS_TL, object_name:AMS_DM_TARGETS_TL, status:VALID, product: AMS - Marketing , description: Multi-lingual support table for data mining targets. , implementation_dba_data: AMS.AMS_DM_TARGETS_TL ,
-
APPS.AMS_DM_TARGETS_B_PKG dependencies on AMS_DM_TARGETS_TL
12.1.1
-
APPS.AMS_LISTSOURCETYPE_PVT dependencies on AMS_DM_TARGETS_TL
12.2.2
-
APPS.AMS_DM_TARGETS_B_PKG dependencies on AMS_DM_TARGETS_TL
12.2.2
-
APPS.AMS_LISTSOURCETYPE_PVT dependencies on AMS_DM_TARGETS_TL
12.1.1
-
VIEW: AMS.AMS_DM_TARGETS_TL#
12.2.2
owner:AMS, object_type:VIEW, object_name:AMS_DM_TARGETS_TL#, status:VALID,
-
APPS.AMS_DM_TARGETS_B_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.AMS_DM_TARGETS_B_PKG SQL Statements
12.1.1
-
APPS.AMS_DM_TARGETS_B_PKG SQL Statements
12.2.2
-
APPS.AMS_DM_TARGETS_B_PKG dependencies on FND_LANGUAGES
12.2.2
-
TRIGGER: APPS.AMS_DM_TARGETS_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:AMS_DM_TARGETS_TL+, status:VALID,
-
SYNONYM: APPS.AMS_DM_TARGETS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMS_DM_TARGETS_TL, status:VALID,
-
VIEW: AMS.AMS_DM_TARGETS_TL#
12.2.2
-
VIEW: APPS.AMS_DM_TARGETS_VL
12.1.1
-
TRIGGER: APPS.AMS_DM_TARGETS_TL+
12.2.2
-
SYNONYM: APPS.AMS_DM_TARGETS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AMS_DM_TARGETS_TL, status:VALID,
-
VIEW: APPS.AMS_DM_TARGETS_VL
12.2.2
-
PACKAGE BODY: APPS.AMS_DM_TARGETS_B_PKG
12.1.1
-
PACKAGE BODY: APPS.AMS_DM_TARGETS_B_PKG
12.2.2
-
TABLE: AMS.AMS_DM_TARGETS_TL
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_DM_TARGETS_TL, object_name:AMS_DM_TARGETS_TL, status:VALID,
-
TABLE: AMS.AMS_DM_TARGETS_TL
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_DM_TARGETS_TL, object_name:AMS_DM_TARGETS_TL, status:VALID,
-
APPS.AMS_DM_TARGETS_B_PKG dependencies on AMS_UTILITY_PVT
12.2.2
-
APPS.AMS_DM_TARGETS_B_PKG dependencies on AMS_UTILITY_PVT
12.1.1
-
FUNCTION: APPS.AMS_DM_TARGETS_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:AMS_DM_TARGETS_TL=, status:VALID,
-
FUNCTION: APPS.AMS_DM_TARGETS_TL=
12.2.2
-
Table: AMS_DM_TARGETS_B
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_DM_TARGETS_B, object_name:AMS_DM_TARGETS_B, status:VALID, product: AMS - Marketing , description: Target column definitions for data mining models. , implementation_dba_data: AMS.AMS_DM_TARGETS_B ,
-
VIEW: APPS.AMS_DM_MODELS_V
12.2.2
-
Table: AMS_DM_TARGETS_B
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_DM_TARGETS_B, object_name:AMS_DM_TARGETS_B, status:VALID, product: AMS - Marketing , description: Target column definitions for data mining models. , implementation_dba_data: AMS.AMS_DM_TARGETS_B ,
-
APPS.AMS_LISTSOURCETYPE_PVT dependencies on AMS_DM_TARGETS_B
12.1.1
-
VIEW: APPS.AMS_DM_SCORES_V
12.2.2
-
View: AMS_DM_TARGETS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_TARGETS_VL, object_name:AMS_DM_TARGETS_VL, status:VALID, product: AMS - Marketing , description: Multi-lingual view for data mining alternative data source targets. , implementation_dba_data: APPS.AMS_DM_TARGETS_VL ,
-
View: AMS_DM_TARGETS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_TARGETS_VL, object_name:AMS_DM_TARGETS_VL, status:VALID, product: AMS - Marketing , description: Multi-lingual view for data mining alternative data source targets. , implementation_dba_data: APPS.AMS_DM_TARGETS_VL ,
-
APPS.AMS_LISTSOURCETYPE_PVT dependencies on AMS_DM_TARGETS_B
12.2.2
-
VIEW: APPS.AMS_DM_SCORES_V
12.1.1
-
VIEW: APPS.AMS_DM_MODELS_V
12.1.1
-
PACKAGE BODY: APPS.AMS_LISTSOURCETYPE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_LISTSOURCETYPE_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.AMS_DM_TARGETS_B_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_DM_TARGETS_B_PKG, status:VALID,
-
PACKAGE BODY: APPS.AMS_DM_TARGETS_B_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_DM_TARGETS_B_PKG, status:VALID,
-
APPS.AMS_DM_TARGETS_B_PKG dependencies on FND_API
12.1.1
-
PACKAGE BODY: APPS.AMS_LISTSOURCETYPE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMS_LISTSOURCETYPE_PVT, status:VALID,
-
APPS.AMS_DM_TARGETS_B_PKG dependencies on FND_API
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.AMS_DM_TARGETS_B_PKG dependencies on AMS_DM_TARGETS_B
12.2.2
-
APPS.AMS_DM_TARGETS_B_PKG dependencies on AMS_DM_TARGETS_B
12.1.1
-
View: AMS_DM_MODELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_MODELS_V, object_name:AMS_DM_MODELS_V, status:VALID, product: AMS - Marketing , description: View of data mining models with denormalized reference objects. , implementation_dba_data: APPS.AMS_DM_MODELS_V ,
-
View: AMS_DM_MODELS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_MODELS_V, object_name:AMS_DM_MODELS_V, status:VALID, product: AMS - Marketing , description: View of data mining models with denormalized reference objects. , implementation_dba_data: APPS.AMS_DM_MODELS_V ,
-
View: AMS_DM_SCORES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_SCORES_V, object_name:AMS_DM_SCORES_V, status:VALID, product: AMS - Marketing , description: View of data mining scoring runs with denormalized reference objects. , implementation_dba_data: APPS.AMS_DM_SCORES_V ,
-
View: AMS_DM_SCORES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_DM_SCORES_V, object_name:AMS_DM_SCORES_V, status:VALID, product: AMS - Marketing , description: View of data mining scoring runs with denormalized reference objects. , implementation_dba_data: APPS.AMS_DM_SCORES_V ,