Search Results okl_ext_sell_invs_tl
Overview
The table OKL_EXT_SELL_INVS_TL resides in the OKL schema, which supports Oracle Lease and Finance Management (OKL) within Oracle E-Business Suite 12.1.1 and 12.2.2. It serves as the translation table (the _TL suffix) for the base table OKL_EXT_SELL_INVS_B, holding the multi-lingual columns required by Oracle's Multi-Lingual Support (MLS) standard. The base table stores language-independent attributes of external selling invoice records used in lease and finance contracts, while this translatable companion stores the human-readable, language-specific text for those records. In ETRM implementations, this table is therefore queried whenever invoice-related descriptive text — such as private-label formatting, invoice messages, or descriptions — must be rendered in a user's session language.
The metadata classifies this object heuristically, from its foreign-key structure, as a standalone Data Vault model — it has no mined parent/child FK links. In Data Vault terms this would suggest treating it as a satellite-like descriptive store, though its standalone status means it requires deliberate modeling rather than a natural hub-and-satellite decomposition. The presence of surrogate and unique keys nonetheless gives it the anchoring characteristics typical of a dimension-supporting translation entity.
Key Information Stored
The table contains 14 documented columns. The primary key OKL_EXT_SELL_INVS_TL_PK is defined on the composite of ID and LANGUAGE. A parallel unique index, OKL_EXT_SELL_INVS_TL_U1, is also defined on (ID, LANGUAGE), confirming this pair as the business-key candidate that uniquely identifies one translated row per invoice record per installed language.
- ID — Surrogate/key column joining to the base record in
OKL_EXT_SELL_INVS_B. - LANGUAGE — The MLS language code identifying which translation this row supplies.
- SOURCE_LANG — The language from which the translation originates.
- SFWT_FLAG — The standard MLS "seed/written/translated" flag indicating translation completeness.
- XTRX_CONS_INVOICE_NUMBER — Consolidated external invoice number text.
- XTRX_FORMAT_TYPE — Format type descriptor for the external selling invoice.
- XTRX_PRIVATE_LABEL — Private-label text associated with the invoice.
- INVOICE_MESSAGE — Message text presented on the invoice.
- DESCRIPTION — Free-text description for the record.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard who-column audit attributes.
The surrogate anchor is ID; the business-key candidate is the composite (ID, LANGUAGE).
Common Use Cases and Queries
Typical usage retrieves translated invoice text for reporting, printing, or UI display in the user's language. Because MLS tables store one row per language, queries must filter by LANGUAGE or join to a language-source view.
- Retrieve localized invoice details for a specific record:
SELECT t.invoice_message, t.description, t.xtrx_private_label FROM okl.okl_ext_sell_invs_tl t WHERE t.id = :p_id AND t.language = USERENV('LANG'); - Audit translation coverage using the MLS flag:
SELECT id, language, sfwt_flag FROM okl.okl_ext_sell_invs_tl WHERE sfwt_flag != 'Y';
- Join to the base table for complete invoice reporting, linking on
IDwhile constrainingLANGUAGEto avoid duplicate rows.
Related Objects
The most significant dependency is its base table, with which it shares the ID join column. Related objects include:
- OKL_EXT_SELL_INVS_B — Base (non-translatable) table; join on
ID. - OKL_EXT_SELL_INVS_TL_PK — Primary-key constraint on
(ID, LANGUAGE). - OKL_EXT_SELL_INVS_TL_U1 — Unique index on
(ID, LANGUAGE). - OKL_EXT_SELL_INVS_VL — The typical MLS-language view exposing translated columns.
- FND_LANGUAGES — Reference source for valid
LANGUAGEcodes. - FND_SESSION_LANGUAGES / USERENV('LANG') — Runtime language resolution used in queries.
- OKL lease/contract invoice APIs — Consume translated invoice text for document generation.
-
Table: OKL_EXT_SELL_INVS_TL
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_EXT_SELL_INVS_TL, object_name:OKL_EXT_SELL_INVS_TL, status:VALID, product: OKL - Lease and Finance Management , description: Translatable columns from OKL_EXT_SELL_INVS_B, per MLS standards , implementation_dba_data: OKL.OKL_EXT_SELL_INVS_TL ,
-
Table: OKL_EXT_SELL_INVS_TL
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_EXT_SELL_INVS_TL, object_name:OKL_EXT_SELL_INVS_TL, status:VALID, product: OKL - Leasing and Finance Management , description: Translatable columns from OKL_EXT_SELL_INVS_B, per MLS standards , implementation_dba_data: OKL.OKL_EXT_SELL_INVS_TL ,
-
VIEW: OKL.OKL_EXT_SELL_INVS_TL#
12.2.2
owner:OKL, object_type:VIEW, object_name:OKL_EXT_SELL_INVS_TL#, status:VALID,
-
SYNONYM: APPS.OKL_EXT_SELL_INVS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_EXT_SELL_INVS_TL, status:VALID,
-
VIEW: OKL.OKL_EXT_SELL_INVS_TL#
12.2.2
-
SYNONYM: APPS.OKL_EXT_SELL_INVS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_EXT_SELL_INVS_TL, status:VALID,
-
APPS.OKL_XSI_PVT SQL Statements
12.1.1
-
APPS.OKL_XSI_PVT SQL Statements
12.2.2
-
TABLE: OKL.OKL_EXT_SELL_INVS_TL
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_EXT_SELL_INVS_TL, object_name:OKL_EXT_SELL_INVS_TL, status:VALID,
-
TABLE: OKL.OKL_EXT_SELL_INVS_TL
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_EXT_SELL_INVS_TL, object_name:OKL_EXT_SELL_INVS_TL, status:VALID,
-
VIEW: APPS.OKL_EXT_SELL_INVS_V
12.1.1
-
VIEW: APPS.OKL_EXT_SELL_INVS_V
12.2.2
-
PACKAGE: APPS.OKL_CONS_BILL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKL_CONS_BILL, status:VALID,
-
PACKAGE: APPS.OKL_CONS_BILL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKL_CONS_BILL, status:VALID,
-
PACKAGE: APPS.OKL_XSI_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKL_XSI_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_XSI_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_XSI_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_XSI_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_XSI_PVT, status:VALID,
-
PACKAGE: APPS.OKL_XSI_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKL_XSI_PVT, status:VALID,
-
PACKAGE: APPS.OKL_BILLING_CONTROLLER_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKL_BILLING_CONTROLLER_PVT, status:VALID,
-
PACKAGE: APPS.OKL_BILLING_CONTROLLER_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKL_BILLING_CONTROLLER_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_INTERNAL_TO_EXTERNAL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_INTERNAL_TO_EXTERNAL, status:VALID,
-
PACKAGE BODY: APPS.OKL_INTERNAL_TO_EXTERNAL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_INTERNAL_TO_EXTERNAL, status:VALID,
-
PACKAGE BODY: APPS.OKL_CONS_BILL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CONS_BILL, status:VALID,
-
PACKAGE BODY: APPS.OKL_BILLING_CONTROLLER_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_BILLING_CONTROLLER_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_CONS_BILL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_CONS_BILL, status:VALID,
-
View: OKL_EXT_SELL_INVS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_EXT_SELL_INVS_V, object_name:OKL_EXT_SELL_INVS_V, status:VALID, product: OKL - Leasing and Finance Management , description: External Transactions Header for Billing records , implementation_dba_data: APPS.OKL_EXT_SELL_INVS_V ,
-
PACKAGE BODY: APPS.OKL_BILLING_CONTROLLER_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_BILLING_CONTROLLER_PVT, status:VALID,
-
View: OKL_EXT_SELL_INVS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_EXT_SELL_INVS_V, object_name:OKL_EXT_SELL_INVS_V, status:VALID, product: OKL - Lease and Finance Management , description: External Transactions Header for Billing records , implementation_dba_data: APPS.OKL_EXT_SELL_INVS_V ,
-
PACKAGE BODY: APPS.OKL_STREAM_BILLING_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_STREAM_BILLING_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_STREAM_BILLING_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_STREAM_BILLING_PVT, status:VALID,
-
APPS.OKL_INTERNAL_TO_EXTERNAL SQL Statements
12.2.2
-
APPS.OKL_INTERNAL_TO_EXTERNAL SQL Statements
12.1.1
-
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
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.OKL_EXT_SELL_INVS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_EXT_SELL_INVS_V, object_name:OKL_EXT_SELL_INVS_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.OKL_EXT_SELL_INVS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_EXT_SELL_INVS_V, object_name:OKL_EXT_SELL_INVS_V, status:VALID,
-
PACKAGE BODY: APPS.OKL_XSI_PVT
12.1.1
-
PACKAGE BODY: APPS.OKL_XSI_PVT
12.2.2
-
APPS.OKL_BILLING_CONTROLLER_PVT SQL Statements
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.OKL_BILLING_CONTROLLER_PVT SQL Statements
12.2.2
-
APPS.OKL_XSI_PVT dependencies on OKL_EXT_SELL_INVS_TL
12.1.1
-
APPS.OKL_STREAM_BILLING_PVT dependencies on OKL_EXT_SELL_INVS_TL
12.1.1