Search Results ozf_claim_types_all_tl
Overview
The table OZF_CLAIM_TYPES_ALL_TL is a core translation table within the Oracle E-Business Suite (EBS) Trade Management module (OZF). Its primary function is to store language-specific, translatable descriptions for Claim Type codes. In a multi-language deployment of EBS 12.1.1 or 12.2.2, this table enables the user interface and reports to display the appropriate Claim Type name based on the user's session language. It operates as the descriptive counterpart to the base transactional table, OZF_CLAIM_TYPES_ALL_B, which holds the non-translatable seed data and business logic for claim types. This separation of translatable and non-translatable data is a standard architectural pattern in Oracle Applications, supporting global implementations.
Key Information Stored
The table's structure is typical of an EBS translation table. The most critical columns include the foreign key CLAIM_TYPE_ID, which links each row to a unique record in the base table OZF_CLAIM_TYPES_ALL_B. The LANGUAGE column identifies the language of the translation (e.g., 'US' for American English, 'KO' for Korean). The SOURCE_LANG column typically indicates the language of the original source record. The central descriptive column is CLAIM_TYPE_NAME, which holds the translated name for the claim type as it should appear in the application. Additional standard columns like CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, and LAST_UPDATED_BY track row history.
Common Use Cases and Queries
The primary use case is retrieving user-friendly claim type names for UI forms, LOVs, and reports in a multi-lingual context. A standard query joins this table with its base table, filtered by the session language. For example, to list all active claim types for the current session language, a developer might use:
- SELECT b.CLAIM_TYPE_CODE, tl.CLAIM_TYPE_NAME
- FROM OZF_CLAIM_TYPES_ALL_B b,
- OZF_CLAIM_TYPES_ALL_TL tl
- WHERE b.CLAIM_TYPE_ID = tl.CLAIM_TYPE_ID
- AND tl.LANGUAGE = userenv('LANG')
- AND b.ENABLED_FLAG = 'Y';
Another common scenario is data migration or setup, where scripts must populate this table with translated values for each supported language after seeding the base table with CLAIM_TYPE_ID values.
Related Objects
As documented in the provided ETRM metadata, this table has a direct and singular relationship with its base table. The relationship is defined by a foreign key constraint where OZF_CLAIM_TYPES_ALL_TL.CLAIM_TYPE_ID references OZF_CLAIM_TYPES_ALL_B. This is a classic base/translation (B/TL) table pair in Oracle EBS. The base table OZF_CLAIM_TYPES_ALL_B is the authoritative source for the claim type definition, while this translation table provides the language-specific labels. Any application form, concurrent program, or API that displays a claim type name will typically perform a join to this table using the CLAIM_TYPE_ID and the user's session language to fetch the correct translation.
-
Table: OZF_CLAIM_TYPES_ALL_TL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIM_TYPES_ALL_TL, object_name:OZF_CLAIM_TYPES_ALL_TL, status:VALID, product: OZF - Trade Management , description: This table is used to store Claim Types (Translation Table) , implementation_dba_data: OZF.OZF_CLAIM_TYPES_ALL_TL ,
-
Table: OZF_CLAIM_TYPES_ALL_TL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIM_TYPES_ALL_TL, object_name:OZF_CLAIM_TYPES_ALL_TL, status:VALID, product: OZF - Trade Management , description: This table is used to store Claim Types (Translation Table) , implementation_dba_data: OZF.OZF_CLAIM_TYPES_ALL_TL ,
-
APPS.OZF_CLAIM_TYPES_ALL_PKG dependencies on OZF_CLAIM_TYPES_ALL_TL
12.2.2
-
APPS.OZF_CLAIM_TYPES_ALL_PKG dependencies on OZF_CLAIM_TYPES_ALL_TL
12.1.1
-
VIEW: OZF.OZF_CLAIM_TYPES_ALL_TL#
12.2.2
owner:OZF, object_type:VIEW, object_name:OZF_CLAIM_TYPES_ALL_TL#, status:VALID,
-
APPS.OZF_CLAIM_TYPES_ALL_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.OZF_CLAIM_TYPES_ALL_PKG dependencies on FND_LANGUAGES
12.2.2
-
APPS.OZF_CLAIM_TYPES_ALL_PKG SQL Statements
12.1.1
-
APPS.OZF_CLAIM_TYPES_ALL_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.OZF_CLAIM_TYPES_ALL_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OZF_CLAIM_TYPES_ALL_TL, status:VALID,
-
TRIGGER: APPS.OZF_CLAIM_TYPES_ALL_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:OZF_CLAIM_TYPES_ALL_TL+, status:VALID,
-
TRIGGER: APPS.OZF_CLAIM_TYPES_ALL_TL+
12.2.2
-
SYNONYM: APPS.OZF_CLAIM_TYPES_ALL_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OZF_CLAIM_TYPES_ALL_TL, status:VALID,
-
VIEW: OZF.OZF_CLAIM_TYPES_ALL_TL#
12.2.2
-
TABLE: OZF.OZF_CLAIM_TYPES_ALL_TL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIM_TYPES_ALL_TL, object_name:OZF_CLAIM_TYPES_ALL_TL, status:VALID,
-
APPS.OZF_CLAIM_TYPES_ALL_PKG dependencies on OZF_CLAIM_TYPES_ALL_B
12.2.2
-
TABLE: OZF.OZF_CLAIM_TYPES_ALL_TL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIM_TYPES_ALL_TL, object_name:OZF_CLAIM_TYPES_ALL_TL, status:VALID,
-
APPS.OZF_CLAIM_TYPES_ALL_PKG dependencies on OZF_CLAIM_TYPES_ALL_B
12.1.1
-
VIEW: APPS.OZF_CLAIM_TYPES_ALL_VL
12.2.2
-
VIEW: APPS.OZF_CLAIM_TYPES_VL
12.1.1
-
VIEW: APPS.OZF_CLAIM_TYPES_VL
12.2.2
-
VIEW: APPS.OZF_CLAIM_TYPES_ALL_VL
12.1.1
-
12.2.2 DBA Data
12.2.2
-
FUNCTION: APPS.OZF_CLAIM_TYPES_ALL_TL=
12.2.2
-
MATERIALIZED VIEW: APPS.OZF_CUST_FUND_SUMMARY_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:OZF_CUST_FUND_SUMMARY_MV, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
FUNCTION: APPS.OZF_CLAIM_TYPES_ALL_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:OZF_CLAIM_TYPES_ALL_TL=, status:VALID,
-
Table: OZF_CLAIM_TYPES_ALL_B
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIM_TYPES_ALL_B, object_name:OZF_CLAIM_TYPES_ALL_B, status:VALID, product: OZF - Trade Management , description: This table is used to store Claim Types (Base Table) , implementation_dba_data: OZF.OZF_CLAIM_TYPES_ALL_B ,
-
Table: OZF_CLAIM_TYPES_ALL_B
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIM_TYPES_ALL_B, object_name:OZF_CLAIM_TYPES_ALL_B, status:VALID, product: OZF - Trade Management , description: This table is used to store Claim Types (Base Table) , implementation_dba_data: OZF.OZF_CLAIM_TYPES_ALL_B ,
-
PACKAGE BODY: APPS.OZF_CLAIM_TYPES_ALL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CLAIM_TYPES_ALL_PKG, status:VALID,
-
PACKAGE BODY: APPS.OZF_CLAIM_TYPES_ALL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CLAIM_TYPES_ALL_PKG, status:VALID,
-
PACKAGE BODY: APPS.OZF_CLAIM_TYPES_ALL_PKG
12.2.2
-
PACKAGE BODY: APPS.OZF_CLAIM_TYPES_ALL_PKG
12.1.1
-
View: OZF_CLAIM_TYPES_ALL_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIM_TYPES_ALL_VL, object_name:OZF_CLAIM_TYPES_ALL_VL, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_CLAIM_TYPES_ALL_VL ,
-
View: OZF_CLAIM_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIM_TYPES_VL, object_name:OZF_CLAIM_TYPES_VL, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_CLAIM_TYPES_VL ,
-
View: OZF_CLAIM_TYPES_ALL_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIM_TYPES_ALL_VL, object_name:OZF_CLAIM_TYPES_ALL_VL, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_CLAIM_TYPES_ALL_VL ,
-
View: OZF_CLAIM_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIM_TYPES_VL, object_name:OZF_CLAIM_TYPES_VL, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_CLAIM_TYPES_VL ,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
MATERIALIZED VIEW: APPS.OZF_CUST_FUND_SUMMARY_MV
12.2.2
owner:APPS, object_type:MATERIALIZED VIEW, object_name:OZF_CUST_FUND_SUMMARY_MV, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
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
-
VIEW: APPS.OZF_CLAIM_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIM_TYPES_VL, object_name:OZF_CLAIM_TYPES_VL, status:VALID,
-
VIEW: APPS.OZF_CLAIM_TYPES_ALL_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIM_TYPES_ALL_VL, object_name:OZF_CLAIM_TYPES_ALL_VL, status:VALID,
-
VIEW: APPS.OZF_CLAIM_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIM_TYPES_VL, object_name:OZF_CLAIM_TYPES_VL, status:VALID,
-
VIEW: APPS.OZF_CLAIM_TYPES_ALL_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIM_TYPES_ALL_VL, object_name:OZF_CLAIM_TYPES_ALL_VL, status:VALID,