Search Results okl_asset_cndtn_lns_tl
Overview
The OKL_ASSET_CNDTN_LNS_TL table is a core component of the Oracle E-Business Suite (EBS) Release 12.1.1 and 12.2.2, residing within the OKL (Lease and Finance Management) product schema. It functions as a translation table, adhering to Oracle's Multi-Language Support (MLS) standards. Its primary role is to store translated, user-facing text for specific columns in its base table, OKL_ASSET_CNDTN_LNS_B. This design separates language-invariant transactional data from language-dependent descriptive data, enabling a single EBS installation to support multiple languages concurrently. The table is essential for generating localized reports, forms, and interface displays related to asset condition lines within the leasing module.
Key Information Stored
The table's structure is defined by its composite primary key, which consists of the ID and LANGUAGE columns. The ID column corresponds to the primary key value from the base table (OKL_ASSET_CNDTN_LNS_B), linking each translated record to its source transactional record. The LANGUAGE column holds the standard Oracle language code (e.g., 'US' for American English, 'D' for German). The translatable columns themselves, while not explicitly named in the provided metadata, typically include descriptive fields such as condition descriptions, comments, or notes associated with an asset condition line. These columns are suffixed in a way that indicates their translated nature, ensuring data integrity and proper application behavior during language selection.
Common Use Cases and Queries
This table is primarily accessed indirectly by the application's MLS architecture. Common use cases include generating lease documentation or asset condition reports in a user's preferred language. For reporting or data extraction purposes, a typical query joins this table with its base table using the ID column and filters on the LANGUAGE column, often correlating it with the user's session language from FND_LANGUAGES. A sample query pattern is:
- SELECT b.transactional_data, tl.translated_description FROM okl_asset_cndtn_lns_b b, okl_asset_cndtn_lns_tl tl WHERE b.id = tl.id AND tl.language = USERENV('LANG');
Direct manipulation of this table via DML operations is strongly discouraged; translations should be managed through dedicated Oracle translation tools or APIs to maintain MLS integrity.
Related Objects
The table maintains a strict dependency relationship with its base table, as defined by its primary key constraint (OKL_ASSET_CNDTN_LNS_TL_PK). The documented relationships are:
- Base Table (Foreign Key Relationship): OKL_ASSET_CNDTN_LNS_B. The TL table's ID column is a foreign key referencing the primary key of the base table. This is a foundational one-to-many relationship where one base record can have multiple translated records in the TL table, one for each supported language.
- Language Reference: While not a formal foreign key constraint in the provided metadata, the LANGUAGE column functionally relates to the standard Oracle language view, FND_LANGUAGES, to validate and display language names.
Other related objects would include any API packages (e.g., OKL_ASSET_CNDTN_LNS_PVT) responsible for creating or updating asset condition lines, which would handle the population of this translation table as part of their logic.
-
Table: OKL_ASSET_CNDTN_LNS_TL
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_ASSET_CNDTN_LNS_TL, object_name:OKL_ASSET_CNDTN_LNS_TL, status:VALID, product: OKL - Lease and Finance Management , description: Translatable columns from OKL_ASSET_CNDTN_LNS_B, per MLS standards , implementation_dba_data: OKL.OKL_ASSET_CNDTN_LNS_TL ,
-
View: OKL_INS_CLAIM_ASSETS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_INS_CLAIM_ASSETS_UV, object_name:OKL_INS_CLAIM_ASSETS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_INS_CLAIM_ASSETS_UV ,
-
View: OKL_AM_ASSET_CNDTN_LNS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_CNDTN_LNS_UV, object_name:OKL_AM_ASSET_CNDTN_LNS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_ASSET_CNDTN_LNS_UV ,
-
View: OKL_ASSET_CNDTN_LNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_ASSET_CNDTN_LNS_V, object_name:OKL_ASSET_CNDTN_LNS_V, status:VALID, product: OKL - Lease and Finance Management , description: The line of a condition report detailing the item description and damage , implementation_dba_data: APPS.OKL_ASSET_CNDTN_LNS_V ,