Search Results hz_credit_usage_rule_sets_tl
Overview
The HZ_CREDIT_USAGE_RULE_SETS_TL table is a translation table within the Oracle Receivables (AR) schema that stores the multilingual, language-specific definitions of credit usage rule sets. It is the child translation table of the base table HZ_CREDIT_USAGE_RULE_SETS_B, and together these two tables implement the standard Oracle EBS "TL/Base" multilingual pattern. In Oracle E-Business Suite 12.1.1 and 12.2.2, credit usage rule sets determine how a customer's credit exposure is calculated — for example, which transaction types, order types, or adjustments count toward open credit balances.
From a Data Vault modeling perspective, the ETRM metadata heuristically classifies this object as satellite-leaning. This is appropriate: the table carries descriptive attributes (the translated NAME) keyed by the natural identifier and language, dependent on the parent base table. A satellite classification suggests the row depends on a hub (here, the rule set identity) and is descriptive rather than a standalone entity.
Key Information Stored
The table contains nine documented columns. The most significant are:
CREDIT_USAGE_RULE_SET_ID— Surrogate identifier for the credit usage rule set, part of the composite primary key and the foreign key to the base table.LANGUAGE— The language code in which the translated value is stored, the second component of the primary key.SOURCE_LANG— The source language of the original record, indicating the language from which the translation originated.NAME— The user-facing, translated name of the credit usage rule set.CREATION_DATE,CREATED_BY— Standard audit columns recording when and by whom the row was inserted.LAST_UPDATE_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN— Standard audit columns tracking the most recent modification and originating login.
The surrogate primary key is HZ_CREDIT_USAGE_RULE_SETS_TL_P on (CREDIT_USAGE_RULE_SET_ID, LANGUAGE). A unique index, HZ_CREDIT_USAGE_RS_TL_U1, on the same column pair, reinforces the business-key candidate that no rule set may have more than one translated name per language. Notably, the table contains no translated description column — only NAME is translated.
Common Use Cases and Queries
Reporting on rule set names typically joins this translation table to its base table and filters by the active language. A common pattern retrieves the translated name for a specific rule set:
- Bilingual reporting:
SELECT b.credit_usage_rule_set_id, t.name, t.language FROM hz_credit_usage_rule_sets_b b, hz_credit_usage_rule_sets_tl t WHERE b.credit_usage_rule_set_id = t.credit_usage_rule_set_id AND t.language = 'US'; - Translation gap analysis: Identify rule sets lacking a row for a required language to detect incomplete translations.
- Audit reporting: Use
LAST_UPDATE_DATEandLAST_UPDATED_BYto trace when names were changed and by which user. - Multi-language dashboards: Join to
FND_LANGUAGESto mapLANGUAGEcodes to descriptive language names.
Related Objects
HZ_CREDIT_USAGE_RULE_SETS_B— The base table; join onCREDIT_USAGE_RULE_SET_ID. This is the documented foreign-key relationship.HZ_CREDIT_USAGE_RULES— The individual rules belonging to rule sets defined in the base and translation tables.HZ_CUSTOMER_PROFILES— References credit usage rule sets to determine customer credit exposure.HZ_CUST_PROFILE_AMTS— Credit profile amounts that consume the rule set logic.FND_LANGUAGES— MapsLANGUAGEcodes to installable language names.FND_TERRITORIES/FND_LANGUAGE_TL— Provide the language context used throughout the multilingual join strategy.
Because the table is populated and maintained primarily through the Receivables setup user interface and concurrent translation programs rather than directly, direct DML should be avoided in favor of the supported Credit Management configuration screens.
-
Table: HZ_CREDIT_USAGE_RULE_SETS_TL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CREDIT_USAGE_RULE_SETS_TL, object_name:HZ_CREDIT_USAGE_RULE_SETS_TL, status:VALID, product: AR - Receivables , description: Sets of credit usage rules translated into multiple languages , implementation_dba_data: AR.HZ_CREDIT_USAGE_RULE_SETS_TL ,
-
Table: HZ_CREDIT_USAGE_RULE_SETS_TL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CREDIT_USAGE_RULE_SETS_TL, object_name:HZ_CREDIT_USAGE_RULE_SETS_TL, status:VALID, product: AR - Receivables , description: Sets of credit usage rules translated into multiple languages , implementation_dba_data: AR.HZ_CREDIT_USAGE_RULE_SETS_TL ,
-
APPS.HZ_CREDIT_USAGE_RULE_SETS_PKG SQL Statements
12.1.1
-
APPS.HZ_CREDIT_USAGE_RULE_SETS_PKG SQL Statements
12.2.2
-
VIEW: AR.HZ_CREDIT_USAGE_RULE_SETS_TL#
12.2.2
owner:AR, object_type:VIEW, object_name:HZ_CREDIT_USAGE_RULE_SETS_TL#, status:VALID,
-
VIEW: APPS.HZ_CREDIT_USAGE_RULE_SETS_VL
12.2.2
-
PACKAGE BODY: APPS.HZ_CREDIT_USAGE_RULE_SETS_PKG
12.1.1
-
VIEW: APPS.HZ_CREDIT_USAGE_RULE_SETS_VL
12.1.1
-
PACKAGE BODY: APPS.HZ_CREDIT_USAGE_RULE_SETS_PKG
12.2.2
-
TABLE: AR.HZ_CREDIT_USAGE_RULE_SETS_TL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CREDIT_USAGE_RULE_SETS_TL, object_name:HZ_CREDIT_USAGE_RULE_SETS_TL, status:VALID,
-
SYNONYM: APPS.HZ_CREDIT_USAGE_RULE_SETS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CREDIT_USAGE_RULE_SETS_TL, status:VALID,
-
SYNONYM: APPS.HZ_CREDIT_USAGE_RULE_SETS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CREDIT_USAGE_RULE_SETS_TL, status:VALID,
-
VIEW: AR.HZ_CREDIT_USAGE_RULE_SETS_TL#
12.2.2
-
PACKAGE: APPS.HZ_CREDIT_USAGE_RULE_SETS_PKG
12.1.1
-
PACKAGE: APPS.HZ_CREDIT_USAGE_RULE_SETS_PKG
12.2.2
-
Table: HZ_CREDIT_USAGE_RULE_SETS_B
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CREDIT_USAGE_RULE_SETS_B, object_name:HZ_CREDIT_USAGE_RULE_SETS_B, status:VALID, product: AR - Receivables , description: Sets of credit usage rules in the base language , implementation_dba_data: AR.HZ_CREDIT_USAGE_RULE_SETS_B ,
-
TABLE: AR.HZ_CREDIT_USAGE_RULE_SETS_TL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CREDIT_USAGE_RULE_SETS_TL, object_name:HZ_CREDIT_USAGE_RULE_SETS_TL, status:VALID,
-
PACKAGE BODY: APPS.HZ_CREDIT_USAGE_RULE_SETS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_CREDIT_USAGE_RULE_SETS_PKG, status:VALID,
-
Table: HZ_CREDIT_USAGE_RULE_SETS_B
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CREDIT_USAGE_RULE_SETS_B, object_name:HZ_CREDIT_USAGE_RULE_SETS_B, status:VALID, product: AR - Receivables , description: Sets of credit usage rules in the base language , implementation_dba_data: AR.HZ_CREDIT_USAGE_RULE_SETS_B ,
-
View: HZ_CREDIT_USAGE_RULE_SETS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_CREDIT_USAGE_RULE_SETS_VL, object_name:HZ_CREDIT_USAGE_RULE_SETS_VL, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_CREDIT_USAGE_RULE_SETS_VL ,
-
View: HZ_CREDIT_USAGE_RULE_SETS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_CREDIT_USAGE_RULE_SETS_VL, object_name:HZ_CREDIT_USAGE_RULE_SETS_VL, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_CREDIT_USAGE_RULE_SETS_VL ,
-
PACKAGE BODY: APPS.HZ_CREDIT_USAGE_RULE_SETS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_CREDIT_USAGE_RULE_SETS_PKG, status:VALID,
-
VIEW: APPS.HZ_CREDIT_USAGE_RULE_SETS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_CREDIT_USAGE_RULE_SETS_VL, object_name:HZ_CREDIT_USAGE_RULE_SETS_VL, status:VALID,
-
VIEW: APPS.HZ_CREDIT_USAGE_RULE_SETS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_CREDIT_USAGE_RULE_SETS_VL, object_name:HZ_CREDIT_USAGE_RULE_SETS_VL, status:VALID,
-
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.HZ_CREDIT_USAGE_RULE_SETS_PKG dependencies on HZ_CREDIT_USAGE_RULE_SETS_TL
12.2.2
-
APPS.HZ_CREDIT_USAGE_RULE_SETS_PKG dependencies on HZ_CREDIT_USAGE_RULE_SETS_TL
12.1.1
-
APPS.HZ_CREDIT_USAGE_RULE_SETS_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.HZ_CREDIT_USAGE_RULE_SETS_PKG dependencies on HZ_CREDIT_USAGE_RULE_SETS_B
12.1.1
-
APPS.HZ_CREDIT_USAGE_RULE_SETS_PKG dependencies on FND_LANGUAGES
12.2.2
-
APPS.HZ_CREDIT_USAGE_RULE_SETS_PKG dependencies on HZ_CREDIT_USAGE_RULE_SETS_B
12.2.2
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,