Search Results ar_cmgt_data_points_tl
Overview
The AR_CMGT_DATA_POINTS_TL table resides in the AR (Receivables) schema and functions as the multilingual support (MLS) translation table for Credit Management case folder data points. In Oracle Credit Management, a "data point" represents an individual information element—such as a credit score, a DSO calculation, a payment history metric, or a customer attribute—that can be displayed within a case folder during the credit review workflow. The base definition of each data point is stored in the corresponding base table, while AR_CMGT_DATA_POINTS_TL holds the translated display name and description for each installed language, enabling the application to render data point labels in the session language of the user.
From a data modeling perspective, the metadata's heuristic Data Vault classification identifies this table as satellite-leaning. This classification is appropriate: the table carries descriptive, language-dependent attributes (name and description) attached to the business key formed by DATA_POINT_ID and LANGUAGE, rather than representing an independent business entity or an associative relationship between entities.
Key Information Stored
The documented physical schema contains thirteen columns. The most significant are:
- DATA_POINT_ID — The surrogate identifier for the parent data point definition; part of the composite primary key AR_CMGT_DATA_POINTS_TL_PK along with LANGUAGE.
- LANGUAGE — The NLS language code identifying which translation this row supplies. Together with DATA_POINT_ID it forms the primary key.
- DATA_POINT_NAME — The translated, user-facing label for the data point as displayed in case folders.
- DESCRIPTION — The translated explanatory text describing the purpose or meaning of the data point.
- SOURCE_LANG — The source language from which the translation was derived, used by the MLS maintenance utilities.
- APPLICATION_ID — Foreign key to FND_APPLICATION, identifying the owning application context for the data point.
- ZD_EDITION_NAME — Editioning column supporting online patching in EBS 12.2.x; it participates in the unique index AR_CMGT_DATA_POINTS_TL_U1 (DATA_POINT_ID, LANGUAGE, ZD_EDITION_NAME).
- OBJECT_VERSION_NUMBER — Optimistic locking column used by the Oracle Applications framework during concurrent updates.
- LAST_UPDATED_BY, LAST_UPDATE_DATE, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — Standard WHO audit columns capturing creation and modification metadata.
The surrogate primary key is the pair (DATA_POINT_ID, LANGUAGE); the unique index AR_CMGT_DATA_POINTS_TL_U1 extends this with ZD_EDITION_NAME to accommodate editioning. DATA_POINT_NAME and DESCRIPTION serve as the business-facing descriptive attributes rather than key candidates.
Common Use Cases and Queries
Typical usage centers on reporting data point labels in a specific language. A join between the base table and this translation table is the standard pattern:
- Retrieving display-ready labels:
SELECT b.data_point_id, t.data_point_name, t.description FROM ar_cmgt_data_points b, ar_cmgt_data_points_tl t WHERE b.data_point_id = t.data_point_id AND t.language = USERENV('LANG'); - Auditing translation coverage: query for base rows lacking a translation in a given language to identify gaps before go-live in a multilingual implementation.
- Custom reporting: extract all English (or other language) data point names to document which metrics the credit department currently surfaces in case folders.
- Post-patch verification: after an upgrade or edition change, confirm rows exist for the correct ZD_EDITION_NAME and that OBJECT_VERSION_NUMBER values are consistent.
Related Objects
- AR_CMGT_DATA_POINTS — The base (non-translated) table holding the data point definition; joined on DATA_POINT_ID.
- FND_APPLICATION — Referenced via AR_CMGT_DATA_POINTS_TL.APPLICATION_ID; identifies the owning application.
- FND_LANGUAGES — Provides the valid LANGUAGE codes used in the translation rows.
- AR_CMGT_CASE_FOLDERS and related case folder tables — Consume data point definitions when rendering credit case folders.
- Credit Management setup and configuration pages in the Receivables responsibility — Read this table to present translated data point names to administrators.
-
Table: AR_CMGT_DATA_POINTS_TL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CMGT_DATA_POINTS_TL, object_name:AR_CMGT_DATA_POINTS_TL, status:VALID, product: AR - Receivables , description: The AR_CMGT_DATA_POINTS_TL table provides multilingual support (MLS) for all case folder data points that are available for display in Oracle Credit Management. , implementation_dba_data: AR.AR_CMGT_DATA_POINTS_TL ,
-
Table: AR_CMGT_DATA_POINTS_TL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CMGT_DATA_POINTS_TL, object_name:AR_CMGT_DATA_POINTS_TL, status:VALID, product: AR - Receivables , description: The AR_CMGT_DATA_POINTS_TL table provides multilingual support (MLS) for all case folder data points that are available for display in Oracle Credit Management. , implementation_dba_data: AR.AR_CMGT_DATA_POINTS_TL ,
-
APPS.AR_CMGT_DP_TABLE_HANDLER SQL Statements
12.1.1
-
APPS.AR_CMGT_DP_TABLE_HANDLER SQL Statements
12.2.2
-
VIEW: AR.AR_CMGT_DATA_POINTS_TL#
12.2.2
owner:AR, object_type:VIEW, object_name:AR_CMGT_DATA_POINTS_TL#, status:VALID,
-
VIEW: AR.AR_CMGT_DATA_POINTS_TL#
12.2.2
-
SYNONYM: APPS.AR_CMGT_DATA_POINTS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AR_CMGT_DATA_POINTS_TL, status:VALID,
-
SYNONYM: APPS.AR_CMGT_DATA_POINTS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AR_CMGT_DATA_POINTS_TL, status:VALID,
-
TRIGGER: APPS.AR_CMGT_DATA_POINTS_TL+
12.2.2
-
TRIGGER: APPS.AR_CMGT_DATA_POINTS_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:AR_CMGT_DATA_POINTS_TL+, status:VALID,
-
VIEW: APPS.AR_CMGT_DATA_POINTS_VL
12.2.2
-
TABLE: AR.AR_CMGT_DATA_POINTS_TL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CMGT_DATA_POINTS_TL, object_name:AR_CMGT_DATA_POINTS_TL, status:VALID,
-
PACKAGE BODY: APPS.AR_CMGT_DP_TABLE_HANDLER
12.1.1
-
PACKAGE BODY: APPS.AR_CMGT_DP_TABLE_HANDLER
12.2.2
-
VIEW: APPS.AR_CMGT_DATA_POINTS_VL
12.1.1
-
TABLE: AR.AR_CMGT_DATA_POINTS_TL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_CMGT_DATA_POINTS_TL, object_name:AR_CMGT_DATA_POINTS_TL, status:VALID,
-
FUNCTION: APPS.AR_CMGT_DATA_POINTS_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:AR_CMGT_DATA_POINTS_TL=, status:VALID,
-
FUNCTION: APPS.AR_CMGT_DATA_POINTS_TL=
12.2.2
-
PACKAGE BODY: APPS.AR_CMGT_DP_TABLE_HANDLER
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AR_CMGT_DP_TABLE_HANDLER, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.AR_CMGT_DP_TABLE_HANDLER
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AR_CMGT_DP_TABLE_HANDLER, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
View: AR_CMGT_DATA_POINTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CMGT_DATA_POINTS_VL, object_name:AR_CMGT_DATA_POINTS_VL, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_CMGT_DATA_POINTS_VL ,
-
View: AR_CMGT_DATA_POINTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CMGT_DATA_POINTS_VL, object_name:AR_CMGT_DATA_POINTS_VL, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_CMGT_DATA_POINTS_VL ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.AR_CMGT_DATA_POINTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CMGT_DATA_POINTS_VL, object_name:AR_CMGT_DATA_POINTS_VL, status:VALID,
-
VIEW: APPS.AR_CMGT_DATA_POINTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CMGT_DATA_POINTS_VL, object_name:AR_CMGT_DATA_POINTS_VL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
Table: FND_APPLICATION
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_APPLICATION, object_name:FND_APPLICATION, status:VALID, product: FND - Application Object Library , description: Applications registered with Oracle Application Object Library , implementation_dba_data: APPLSYS.FND_APPLICATION ,
-
Table: FND_APPLICATION
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_APPLICATION, object_name:FND_APPLICATION, status:VALID, product: FND - Application Object Library , description: Applications registered with Oracle Application Object Library , implementation_dba_data: APPLSYS.FND_APPLICATION ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design 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
-
APPS.AR_CMGT_DP_TABLE_HANDLER dependencies on AR_CMGT_DATA_POINTS_TL
12.2.2
-
APPS.AR_CMGT_DP_TABLE_HANDLER dependencies on AR_CMGT_DATA_POINTS_TL
12.1.1
-
APPS.AR_CMGT_DP_TABLE_HANDLER dependencies on FND_LANGUAGES
12.1.1
-
APPS.AR_CMGT_DP_TABLE_HANDLER dependencies on FND_LANGUAGES
12.2.2
-
SYNONYM: PUBLIC.DATABASE_PROPERTIES
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DATABASE_PROPERTIES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
APPS.AR_CMGT_DP_TABLE_HANDLER dependencies on AR_CMGT_DATA_POINTS_B
12.2.2
-
APPS.AR_CMGT_DP_TABLE_HANDLER dependencies on AR_CMGT_DATA_POINTS_B
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: SYS.DBMS_STANDARD
12.2.2
owner:SYS, object_type:PACKAGE, object_name:DBMS_STANDARD, status:VALID,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,