Search Results xnp_sv_status_types_tl
Overview
The XNP_SV_STATUS_TYPES_TL table is a core translation table within the Oracle E-Business Suite (EBS) Number Portability (XNP) module. It functions as the multilingual repository for user-facing descriptions of service status types. Its primary role is to support the application's global deployment by storing translated text for status type names and descriptions in multiple languages, as defined by the application's language codes. This table is directly dependent on its base table, XNP_SV_STATUS_TYPES_B, which holds the language-independent, transactional definition of each status type. The existence of this translation layer is a standard architectural pattern in Oracle EBS, enabling a single installation to present a localized user interface based on the session language.
Key Information Stored
The table's structure is designed to map language-specific text to a core status type identifier. The primary key is a composite of two columns, ensuring a unique entry for each status in each language. The most critical columns are:
- STATUS_TYPE_CODE: The unique identifier for the service status type. This column is a foreign key that links directly to the corresponding record in the base table XNP_SV_STATUS_TYPES_B.
- LANGUAGE: The Oracle language code (e.g., 'US' for American English, 'KO' for Korean) specifying the language of the translated text for that row.
- NAME: The translated, user-displayable name of the status type (e.g., "Active", "Suspended", "Port-In Progress" in the session language).
- DESCRIPTION: A more detailed explanation of the status type in the specified language.
- SOURCE_LANG: A column typically indicating the original language in which the data was entered, which is often the base language of the installation.
Common Use Cases and Queries
This table is primarily accessed by the application's user interface (UI) logic to display status names in the user's preferred language. It is also critical for generating localized reports. A common query pattern involves joining the translation table with its base table to retrieve a complete, language-specific view of status types. For example, to retrieve all status type information for the current session language, a query would use the `USERENV('LANG')` function or a session variable:
SELECT b.STATUS_TYPE_CODE, tl.NAME, tl.DESCRIPTION
FROM XNP_SV_STATUS_TYPES_B b,
XNP_SV_STATUS_TYPES_TL tl
WHERE b.STATUS_TYPE_CODE = tl.STATUS_TYPE_CODE
AND tl.LANGUAGE = :session_language;
Another key use case is during the implementation and maintenance of supported languages, where administrators or translators populate this table with new translations for each status type code.
Related Objects
The XNP_SV_STATUS_TYPES_TL table has a tightly coupled, dependent relationship with its base table. The documented foreign key relationship is fundamental to its existence and integrity.
- XNP_SV_STATUS_TYPES_B: This is the primary related object. The translation table references it via a foreign key constraint where
XNP_SV_STATUS_TYPES_TL.STATUS_TYPE_CODEmaps to the primary key column inXNP_SV_STATUS_TYPES_B. Every record in the TL table must have a corresponding, pre-existing record in the B table. The B table holds the seed data and operational attributes, while the TL table holds the descriptive translations.
-
Table: XNP_SV_STATUS_TYPES_TL
12.1.1
owner:XNP, object_type:TABLE, fnd_design_data:XNP.XNP_SV_STATUS_TYPES_TL, object_name:XNP_SV_STATUS_TYPES_TL, status:VALID, product: XNP - Number Portability , description: Translation table to XNP_SV_STATUS_TYPES_B , implementation_dba_data: XNP.XNP_SV_STATUS_TYPES_TL ,
-
Table: XNP_SV_STATUS_TYPES_TL
12.2.2
owner:XNP, object_type:TABLE, fnd_design_data:XNP.XNP_SV_STATUS_TYPES_TL, object_name:XNP_SV_STATUS_TYPES_TL, status:VALID, product: XNP - Number Portability , description: Translation table to XNP_SV_STATUS_TYPES_B , implementation_dba_data: XNP.XNP_SV_STATUS_TYPES_TL ,
-
APPS.XNP_SV_STATUS_TYPES_PKG dependencies on XNP_SV_STATUS_TYPES_TL
12.2.2
-
APPS.XNP_SV_STATUS_TYPES_PKG dependencies on XNP_SV_STATUS_TYPES_TL
12.1.1
-
APPS.XNP_SV_STATUS_TYPES_PKG SQL Statements
12.1.1
-
APPS.XNP_SV_STATUS_TYPES_PKG SQL Statements
12.2.2
-
VIEW: XNP.XNP_SV_STATUS_TYPES_TL#
12.2.2
owner:XNP, object_type:VIEW, object_name:XNP_SV_STATUS_TYPES_TL#, status:VALID,
-
APPS.XNP_SV_STATUS_TYPES_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.XNP_SV_STATUS_TYPES_PKG dependencies on FND_LANGUAGES
12.2.2
-
TABLE: XNP.XNP_SV_STATUS_TYPES_TL
12.2.2
owner:XNP, object_type:TABLE, fnd_design_data:XNP.XNP_SV_STATUS_TYPES_TL, object_name:XNP_SV_STATUS_TYPES_TL, status:VALID,
-
TRIGGER: APPS.XNP_SV_STATUS_TYPES_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:XNP_SV_STATUS_TYPES_TL+, status:VALID,
-
VIEW: APPS.XNP_SV_STATUS_TYPES_VL
12.2.2
-
PACKAGE BODY: APPS.XNP_SV_STATUS_TYPES_PKG
12.1.1
-
PACKAGE BODY: APPS.XNP_SV_STATUS_TYPES_PKG
12.2.2
-
SYNONYM: APPS.XNP_SV_STATUS_TYPES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:XNP_SV_STATUS_TYPES_TL, status:VALID,
-
SYNONYM: APPS.XNP_SV_STATUS_TYPES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:XNP_SV_STATUS_TYPES_TL, status:VALID,
-
TABLE: XNP.XNP_SV_STATUS_TYPES_TL
12.1.1
owner:XNP, object_type:TABLE, fnd_design_data:XNP.XNP_SV_STATUS_TYPES_TL, object_name:XNP_SV_STATUS_TYPES_TL, status:VALID,
-
TRIGGER: APPS.XNP_SV_STATUS_TYPES_TL+
12.2.2
-
VIEW: APPS.XNP_SV_STATUS_TYPES_VL
12.1.1
-
VIEW: XNP.XNP_SV_STATUS_TYPES_TL#
12.2.2
-
APPS.XNP_SV_STATUS_TYPES_PKG dependencies on XNP_SV_STATUS_TYPES_B
12.1.1
-
Table: XNP_SV_STATUS_TYPES_B
12.1.1
owner:XNP, object_type:TABLE, fnd_design_data:XNP.XNP_SV_STATUS_TYPES_B, object_name:XNP_SV_STATUS_TYPES_B, status:VALID, product: XNP - Number Portability , description: Subsription version status definition , implementation_dba_data: XNP.XNP_SV_STATUS_TYPES_B ,
-
FUNCTION: APPS.XNP_SV_STATUS_TYPES_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:XNP_SV_STATUS_TYPES_TL=, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
APPS.XNP_SV_STATUS_TYPES_PKG dependencies on XNP_SV_STATUS_TYPES_B
12.2.2
-
FUNCTION: APPS.XNP_SV_STATUS_TYPES_TL=
12.2.2
-
View: XNP_SV_STATUS_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XNP.XNP_SV_STATUS_TYPES_VL, object_name:XNP_SV_STATUS_TYPES_VL, status:VALID, product: XNP - Number Portability , description: Multilingual view to table XNP_SV_STATUS_TYPES_B , implementation_dba_data: APPS.XNP_SV_STATUS_TYPES_VL ,
-
View: XNP_SV_STATUS_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XNP.XNP_SV_STATUS_TYPES_VL, object_name:XNP_SV_STATUS_TYPES_VL, status:VALID, product: XNP - Number Portability , description: Multilingual view to table XNP_SV_STATUS_TYPES_B , implementation_dba_data: APPS.XNP_SV_STATUS_TYPES_VL ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.XNP_SV_STATUS_TYPES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XNP_SV_STATUS_TYPES_PKG, status:VALID,
-
PACKAGE BODY: APPS.XNP_SV_STATUS_TYPES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XNP_SV_STATUS_TYPES_PKG, status:VALID,
-
Table: XNP_SV_STATUS_TYPES_B
12.2.2
owner:XNP, object_type:TABLE, fnd_design_data:XNP.XNP_SV_STATUS_TYPES_B, object_name:XNP_SV_STATUS_TYPES_B, status:VALID, product: XNP - Number Portability , description: Subsription version status definition , implementation_dba_data: XNP.XNP_SV_STATUS_TYPES_B ,
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
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 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.XNP_SV_SOA_VL
12.2.2
-
VIEW: APPS.XNP_SV_STATUS_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XNP.XNP_SV_STATUS_TYPES_VL, object_name:XNP_SV_STATUS_TYPES_VL, status:VALID,
-
VIEW: APPS.XNP_SV_STATUS_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XNP.XNP_SV_STATUS_TYPES_VL, object_name:XNP_SV_STATUS_TYPES_VL, status:VALID,
-
VIEW: APPS.XNP_SV_SOA_VL
12.1.1
-
View: XNP_SV_SOA_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XNP.XNP_SV_SOA_VL, object_name:XNP_SV_SOA_VL, status:VALID, product: XNP - Number Portability , description: Shows porting information for a single telephone number. Removed ( SVA.CREATED_BY_SP_ID=SPR_OWN.SP_ID ) from WHERE clausefor Service Bureau, since this will be handled automagically by VPD. rnyberg, 11/06/2000. , implementation_dba_data: APPS.XNP_SV_SOA_VL ,
-
View: XNP_SV_SOA_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XNP.XNP_SV_SOA_VL, object_name:XNP_SV_SOA_VL, status:VALID, product: XNP - Number Portability , description: Shows porting information for a single telephone number. Removed ( SVA.CREATED_BY_SP_ID=SPR_OWN.SP_ID ) from WHERE clausefor Service Bureau, since this will be handled automagically by VPD. rnyberg, 11/06/2000. , implementation_dba_data: APPS.XNP_SV_SOA_VL ,
-
eTRM - XNP Tables and Views
12.1.1
description: Stores a list of all timers in progress ,
-
eTRM - XNP Tables and Views
12.2.2
description: Stores a list of all timers in progress ,