Search Results bis_levels_tl
Overview
BIS_LEVELS_TL is the translation (TL) table for level definitions within the BIS (Applications BIS) product module of Oracle E-Business Suite. In the Oracle EBS multilingual data model, a base table stores language-independent attributes while its corresponding _TL table stores the language-dependent, translatable text attributes — principally NAME and DESCRIPTION — keyed by both the entity identifier and a LANGUAGE code. BIS_LEVELS_TL therefore holds the translated names and descriptions of levels that are defined in the base levels table and referenced across the BIS schema.
In the documented physical schema for ETRM 12.2.2, the table is owned by the BIS schema and contains 11 columns. The metadata's heuristic Data Vault classification, mined from the foreign-key structure, identifies this object as standalone. As a modeling suggestion, this classification reflects that the table's only documented foreign key (LEVEL_ID → MSD_LEVELS) points outward to a parent entity, and no other table is shown referencing it. In Data Vault terms this pattern is most consistent with a satellite carrying descriptive, language-qualified attributes attached to the level hub; because the mined structure is minimal, the standalone label should be treated as an advisory hint rather than a definitive classification.
Key Information Stored
The table's 11 documented columns separate the entity identifier, the language discriminator, the translatable text, and standard Oracle WHO audit columns.
- LEVEL_ID — Surrogate identifier for the level. It is the join key back to the parent entity and is documented as a foreign key to MSD_LEVELS.
- LANGUAGE — Language code identifying which translation row applies. Together with LEVEL_ID it forms the primary business uniqueness constraint.
- NAME — The translated name or label of the level in the row's language. This is the attribute most often surfaced in reports and LOVs.
- DESCRIPTION — The translated long description of the level.
- TRANSLATED — Flag indicating whether the NAME and DESCRIPTION values in this row have been translated from the source language.
- SOURCE_LANG — The language from which the current row's text was translated, or the source language of the base record.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — Standard Oracle WHO audit columns recording insert and update provenance.
Two unique indexes are documented as business-key candidates. BIS_LEVELS_TL_U1 covers (LEVEL_ID, LANGUAGE), enforcing one translation per level per language. BIS_LEVELS_TL_U2 covers (LANGUAGE, NAME, LEVEL_ID), supporting lookup and uniqueness of level names within a language. Note that the column inventory does not document a separate surrogate primary key column beyond LEVEL_ID, which functions as the entity identifier in combination with LANGUAGE.
Common Use Cases and Queries
The most frequent requirement is retrieving the level name in a specific language for display. A typical pattern joins the translation table to the base level table and filters on LANGUAGE:
- Language-specific lookup:
SELECT l.level_id, t.name, t.description FROM bis_levels l, bis_levels_tl t WHERE l.level_id = t.level_id AND t.language = :p_lang. - LOV population: query BIS_LEVELS_TL filtered by LANGUAGE and ordered by NAME to populate a level list of values.
- Translation completeness reporting:
SELECT level_id, language, translated FROM bis_levels_tl WHERE translated = 'N'identifies rows still requiring translation. - Multi-language reporting: concatenate or pivot NAME across LANGUAGE values using the (LEVEL_ID, LANGUAGE) uniqueness to guarantee one row per level per language.
- Join to parent entity: join BIS_LEVELS_TL.LEVEL_ID to MSD_LEVELS to obtain level attributes alongside their translated text.
Because the base translatable text resides here rather than in the base table, reports that omit a LANGUAGE filter risk returning multiple rows per level. Always constrain on LANGUAGE or aggregate explicitly.
Related Objects
- MSD_LEVELS — Referenced through the documented foreign key BIS_LEVELS_TL.LEVEL_ID → MSD_LEVELS; the parent level definition carrying language-independent attributes.
- BIS_LEVELS — The base (non-TL) level table conventionally paired with this translation table, joined on LEVEL_ID.
- BIS_LEVELS_TL_U1 and BIS_LEVELS_TL_U2 — The unique indexes enforcing business-key uniqueness on (LEVEL_ID, LANGUAGE) and (LANGUAGE, NAME, LEVEL_ID) respectively.
- BIS_LOOKUPS / BIS_LOOKUPS_TL — Related BIS reference-data translation tables that follow the same TL design pattern and are frequently queried alongside level data.
- FND_LANGUAGES — The language reference table supplying valid LANGUAGE codes and installed-language context for joins and filters.
Together these objects support consistent, multilingual presentation of BIS level definitions throughout the E-Business Suite.
-
Table: BIS_LEVELS_TL
12.1.1
owner:BIS, object_type:TABLE, fnd_design_data:BIS.BIS_LEVELS_TL, object_name:BIS_LEVELS_TL, status:VALID, product: BIS - Applications BIS , implementation_dba_data: BIS.BIS_LEVELS_TL ,
-
Table: BIS_LEVELS_TL
12.2.2
owner:BIS, object_type:TABLE, fnd_design_data:BIS.BIS_LEVELS_TL, object_name:BIS_LEVELS_TL, status:VALID, product: BIS - Applications BIS , implementation_dba_data: BIS.BIS_LEVELS_TL ,
-
VIEW: APPS.BISFV_TARGET_LEVELS
12.1.1
-
APPS.BIS_LEVELS_MLS SQL Statements
12.1.1
-
View: BISFV_TARGET_LEVELS
12.2.2
product: BIS - Applications BIS , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.BIS_LEVELS_MLS
12.1.1
-
VIEW: APPS.BISFV_DIMENSION_LEVELS
12.1.1
-
View: BISFV_TARGET_LEVELS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BISFV_TARGET_LEVELS, object_name:BISFV_TARGET_LEVELS, status:VALID, product: BIS - Applications BIS , implementation_dba_data: APPS.BISFV_TARGET_LEVELS ,
-
VIEW: APPS.BISFV_LEVELS_CUSTOMIZATIONS_V
12.1.1
-
VIEW: APPS.BISBV_DIMENSION_LEVELS
12.1.1
-
VIEW: BIS.BIS_LEVELS_TL#
12.2.2
owner:BIS, object_type:VIEW, object_name:BIS_LEVELS_TL#, status:VALID,
-
SYNONYM: APPS.BIS_LEVELS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BIS_LEVELS_TL, status:VALID,
-
VIEW: APPS.BIS_LEVELS_VL
12.1.1
-
View: BISBV_DIMENSION_LEVELS
12.2.2
product: BIS - Applications BIS , implementation_dba_data: Not implemented in this database ,
-
VIEW: BIS.BIS_LEVELS_TL#
12.2.2
-
View: BISBV_DIMENSION_LEVELS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BISBV_DIMENSION_LEVELS, object_name:BISBV_DIMENSION_LEVELS, status:VALID, product: BIS - Applications BIS , implementation_dba_data: APPS.BISBV_DIMENSION_LEVELS ,
-
View: BISFV_DIMENSION_LEVELS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BISFV_DIMENSION_LEVELS, object_name:BISFV_DIMENSION_LEVELS, status:VALID, product: BIS - Applications BIS , implementation_dba_data: APPS.BISFV_DIMENSION_LEVELS ,
-
View: BISFV_DIMENSION_LEVELS
12.2.2
product: BIS - Applications BIS , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.BIS_LEVELS_VL
12.2.2
-
SYNONYM: APPS.BIS_LEVELS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BIS_LEVELS_TL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.BIS_LEVELS_MLS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_LEVELS_MLS, status:VALID,
-
TABLE: BIS.BIS_LEVELS_TL
12.2.2
owner:BIS, object_type:TABLE, fnd_design_data:BIS.BIS_LEVELS_TL, object_name:BIS_LEVELS_TL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
TABLE: BIS.BIS_LEVELS_TL
12.1.1
owner:BIS, object_type:TABLE, fnd_design_data:BIS.BIS_LEVELS_TL, object_name:BIS_LEVELS_TL, status:VALID,
-
PACKAGE BODY: APPS.BSC_CALENDAR_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BSC_CALENDAR_PVT, status:VALID,
-
View: BIS_LEVELS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BIS_LEVELS_VL, object_name:BIS_LEVELS_VL, status:VALID, product: BIS - Applications BIS , implementation_dba_data: APPS.BIS_LEVELS_VL ,
-
View: BIS_LEVELS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BIS_LEVELS_VL, object_name:BIS_LEVELS_VL, status:VALID, product: BIS - Applications BIS , implementation_dba_data: APPS.BIS_LEVELS_VL ,
-
PACKAGE BODY: APPS.BSC_PERIODS_UTILITY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BSC_PERIODS_UTILITY_PKG, status:VALID,
-
PACKAGE BODY: APPS.BIM_PMV_DBI_UTL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIM_PMV_DBI_UTL_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.BSC_PERIODICITIES_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:BSC_PERIODICITIES_PUB, status:VALID,
-
PACKAGE BODY: APPS.BIS_DIMENSION_LEVEL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_DIMENSION_LEVEL_PVT, status:VALID,
-
PACKAGE BODY: APPS.BSC_DBI_CALENDAR
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BSC_DBI_CALENDAR, status:VALID,
-
PACKAGE BODY: APPS.BIS_DIM_LEVEL_VALUE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_DIM_LEVEL_VALUE_PVT, status:VALID,
-
PACKAGE BODY: APPS.BSC_PERIODICITIES_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BSC_PERIODICITIES_PUB, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.BIS_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_UTIL, status:VALID,
-
APPS.BIS_DIMENSION_LEVEL_PVT SQL Statements
12.1.1
-
PACKAGE: APPS.BIS_DIM_LEVEL_VALUE_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:BIS_DIM_LEVEL_VALUE_PUB, status:VALID,
-
PACKAGE BODY: APPS.BIS_INDICATOR_REGION_UI_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_INDICATOR_REGION_UI_PVT, status:VALID,
-
APPS.BIS_RKPI SQL Statements
12.1.1
-
PACKAGE: APPS.BIS_DIMENSION_LEVEL_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:BIS_DIMENSION_LEVEL_PUB, status:VALID,
-
PACKAGE BODY: APPS.BSC_BIS_DIM_OBJ_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BSC_BIS_DIM_OBJ_PUB, status:VALID,
-
PACKAGE BODY: APPS.BSC_UPGRADES
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BSC_UPGRADES, status:VALID,
-
VIEW: APPS.BISFV_LEVELS_CUSTOMIZATIONS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:BISFV_LEVELS_CUSTOMIZATIONS_V, status:VALID,
-
VIEW: APPS.BIS_LEVELS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BIS_LEVELS_VL, object_name:BIS_LEVELS_VL, status:VALID,