Search Results okc_k_lines_tlh
Overview
OKC_K_LINES_TLH is a history (audit) table in the OKC — Contracts Core module of Oracle E-Business Suite, documented across releases 12.1.1 and 12.2.2. It preserves prior versions of rows maintained in OKC_K_LINES_TL, the translation base table that holds language-dependent descriptive attributes for contract lines. Whenever a contract line's translatable text attributes are updated, Oracle's multi-language translation infrastructure writes the superseded row into OKC_K_LINES_TLH, keyed by the original row identifier, language, and a monotonically increasing major version number. The table is owned by the OKC schema and is marked VALID in the ETRM data dictionary.
Under a heuristic Data Vault classification mined from its foreign key structure, OKC_K_LINES_TLH presents as a standalone object — it carries no outgoing links to other business entities beyond a reference to FND_SECURITY_GROUPS. In modeling terms it is therefore best treated as a satellite-like history structure attached to the OKC_K_LINES_TL entity, recording descriptive change over time rather than expressing relationships between business keys.
Key Information Stored
The documented physical schema comprises 17 columns. The most significant are:
- ID — Surrogate identifier of the contract line's translation row; part of the composite primary key and of the unique business-key index.
- LANGUAGE — The language code of the translated text; part of the composite primary key.
- MAJOR_VERSION — Version sequence number that distinguishes successive historical snapshots of the same ID/LANGUAGE pair.
- SOURCE_LANG — The source language from which the translated text was derived.
- SFWT_FLAG — Flag indicating whether the row participates in the "Seed From Working Table" translation process.
- NAME — The contract line name as it stood at the captured version.
- COMMENTS — Free-form descriptive comments associated with the line.
- ITEM_DESCRIPTION — The item description carried on the contract line.
- BLOCK23TEXT — Supplemental descriptive text block used by the contracts line framework.
- OKE_BOE_DESCRIPTION — Description attribute integrated from the OKE (Project Contracts) billing/BOE context.
- COGNOMEN — Secondary name or alias attribute held on the line record.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard WHO audit columns capturing row provenance and change tracking.
- SECURITY_GROUP_ID — Multi-tenant security grouping column with a foreign key to FND_SECURITY_GROUPS.
The composite primary key OKC_K_LINES_TLH_PK is defined on (ID, LANGUAGE, MAJOR_VERSION). A unique index, OKC_K_LINES_TLH_U1, is defined on the same three columns and serves as the documented business-key candidate.
Common Use Cases and Queries
Typical uses include reconstructing the description history of a contract line for audit or dispute resolution, comparing successive versions of line text, and feeding change-data-capture extracts into downstream reporting. A representative query retrieves the version history for a single line:
SELECT id, language, major_version, name, comments, item_description, last_update_date FROM okc_k_lines_tlh WHERE id = :line_id ORDER BY major_version DESC;- Joining to the current translation row to isolate differences:
SELECT h.id, h.major_version, h.name hist_name, t.name curr_name FROM okc_k_lines_tlh h, okc_k_lines_tl t WHERE h.id = t.id AND h.language = t.language AND h.name <> t.name; - Filtering by security group for multi-org reporting:
... WHERE security_group_id = :sgid;
Because the table grows in step with translation updates, reports should always constrain by ID, LANGUAGE, or date range to avoid full scans.
Related Objects
- OKC_K_LINES_TL — The base translation table for which this object is the history repository; joined on ID and LANGUAGE.
- OKC_K_LINES_B / OKC_K_LINES — The contract line base and view entities whose descriptive attributes flow into the translation and history tables.
- OKC_K_HEADERS_TLH / OKC_K_HEADERS_TL — Parallel history and translation structures at the contract header level.
- FND_SECURITY_GROUPS — Referenced by the SECURITY_GROUP_ID foreign key.
- OKC_CONTRACT_LINES_V and related contract line views — Reporting views that surface current line text and can be compared against history rows.
-
Table: OKC_K_LINES_TLH
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_LINES_TLH, object_name:OKC_K_LINES_TLH, status:VALID, product: OKC - Contracts Core , description: History table for OKC_K_LINES_TL. , implementation_dba_data: OKC.OKC_K_LINES_TLH ,
-
Table: OKC_K_LINES_TLH
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_LINES_TLH, object_name:OKC_K_LINES_TLH, status:VALID, product: OKC - Contracts Core , description: This is a mirror image of base table OKC_K_LINES_TL, please refer to the base table for detailed column level information. , implementation_dba_data: OKC.OKC_K_LINES_TLH ,
-
VIEW: OKC.OKC_K_LINES_TLH#
12.2.2
owner:OKC, object_type:VIEW, object_name:OKC_K_LINES_TLH#, status:VALID,
-
SYNONYM: APPS.OKC_K_LINES_TLH
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKC_K_LINES_TLH, status:VALID,
-
SYNONYM: APPS.OKC_K_LINES_TLH
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKC_K_LINES_TLH, status:VALID,
-
VIEW: OKC.OKC_K_LINES_TLH#
12.2.2
-
VIEW: APPS.OKL_CS_LINE_VERSION_UV
12.2.2
-
TABLE: OKC.OKC_K_LINES_TLH
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_LINES_TLH, object_name:OKC_K_LINES_TLH, status:VALID,
-
VIEW: APPS.OKL_CS_LINE_VERSION_UV
12.1.1
-
VIEW: APPS.OKS_COVERAGES_HV
12.1.1
-
View: OKL_CS_LINE_VERSION_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_LINE_VERSION_UV, object_name:OKL_CS_LINE_VERSION_UV, status:VALID, product: OKL - Leasing and Finance Management , description: List of Line Versions , implementation_dba_data: APPS.OKL_CS_LINE_VERSION_UV ,
-
TABLE: OKC.OKC_K_LINES_TLH
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_K_LINES_TLH, object_name:OKC_K_LINES_TLH, status:VALID,
-
VIEW: APPS.OKS_COVERAGES_HV
12.2.2
-
VIEW: APPS.OKE_K_LINES_HV
12.1.1
-
View: OKL_CS_LINE_VERSION_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_LINE_VERSION_UV, object_name:OKL_CS_LINE_VERSION_UV, status:VALID, product: OKL - Lease and Finance Management , description: List of Line Versions , implementation_dba_data: APPS.OKL_CS_LINE_VERSION_UV ,
-
VIEW: APPS.OKE_K_LINES_HV
12.2.2
-
VIEW: APPS.OKC_K_LINES_HV
12.2.2
-
VIEW: APPS.OKE_K_FUND_ALLOCATIONS_HV
12.2.2
-
VIEW: APPS.OKE_K_FUND_ALLOCATIONS_HV
12.1.1
-
PACKAGE BODY: APPS.OKC_CLE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_CLE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKC_CLE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_CLE_PVT, status:VALID,
-
VIEW: APPS.OKC_K_LINES_HV
12.1.1
-
View: OKS_COVERAGES_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_COVERAGES_HV, object_name:OKS_COVERAGES_HV, status:VALID, product: OKS - Service Contracts , description: History View for Coverage , implementation_dba_data: APPS.OKS_COVERAGES_HV ,
-
View: OKS_COVERAGES_HV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_COVERAGES_HV, object_name:OKS_COVERAGES_HV, status:VALID, product: OKS - Service Contracts , description: History View for Coverage , implementation_dba_data: APPS.OKS_COVERAGES_HV ,
-
VIEW: APPS.OKL_CS_LINE_VERSION_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_LINE_VERSION_UV, object_name:OKL_CS_LINE_VERSION_UV, status:VALID,
-
VIEW: APPS.OKL_CS_LINE_VERSION_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_LINE_VERSION_UV, object_name:OKL_CS_LINE_VERSION_UV, status:VALID,
-
View: OKR_K_LINE_RGTS_HDV
12.1.1
product: OKR - Contracts for Rights (Obsolete) , description: History view for OKR contract rights lines , implementation_dba_data: Not implemented in this database ,
-
View: OKR_K_LINE_RGTS_HDV
12.2.2
product: OKR - Contracts for Rights (Obsolete) , description: History view for OKR contract rights lines , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.OKC_VERSION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_VERSION_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKC_VERSION_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_VERSION_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.OKE_K_LINES_FULL_HV
12.2.2
-
VIEW: APPS.OKE_K_LINES_FULL_HV
12.1.1
-
12.1.1 DBA Data
12.1.1
-
View: OKE_K_FUND_ALLOCATIONS_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_FUND_ALLOCATIONS_HV, object_name:OKE_K_FUND_ALLOCATIONS_HV, status:VALID, product: OKE - Project Contracts , description: Contract funding source allocation history view , implementation_dba_data: APPS.OKE_K_FUND_ALLOCATIONS_HV ,
-
View: OKE_K_FUND_ALLOCATIONS_HV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_FUND_ALLOCATIONS_HV, object_name:OKE_K_FUND_ALLOCATIONS_HV, status:VALID, product: OKE - Project Contracts , description: Contract funding source allocation history view , implementation_dba_data: APPS.OKE_K_FUND_ALLOCATIONS_HV ,
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.OKS_AUTH_LINES_HV
12.2.2
-
View: OKC_K_LINES_HV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_LINES_HV, object_name:OKC_K_LINES_HV, status:VALID, product: OKC - Contracts Core , description: History view for OKC_K_LINES. , implementation_dba_data: APPS.OKC_K_LINES_HV ,
-
View: OKE_K_LINES_HV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_HV, object_name:OKE_K_LINES_HV, status:VALID, product: OKE - Project Contracts , description: Historical contract line information view , implementation_dba_data: APPS.OKE_K_LINES_HV ,
-
View: OKC_K_LINES_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_LINES_HV, object_name:OKC_K_LINES_HV, status:VALID, product: OKC - Contracts Core , description: History view for OKC_K_LINES. , implementation_dba_data: APPS.OKC_K_LINES_HV ,
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
View: OKE_K_LINES_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_LINES_HV, object_name:OKE_K_LINES_HV, status:VALID, product: OKE - Project Contracts , description: Historical contract line information view , implementation_dba_data: APPS.OKE_K_LINES_HV ,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.OKC_CLE_PVT SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.OKS_AUTH_LINES_HV
12.1.1
-
VIEW: APPS.OKS_COVERAGES_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_COVERAGES_HV, object_name:OKS_COVERAGES_HV, status:VALID,