Search Results oke_k_standard_notes_tlh
Overview
The OKE_K_STANDARD_NOTES_TLH table is a core data object within the Oracle E-Business Suite (EBS) Project Contracts (OKE) module. It serves as a multi-lingual historical repository for standardized text clauses or notes that can be applied to contracts. Its primary role is to support the storage of translated versions of standard contract notes across different languages, while maintaining a full version history for each translation. This functionality is critical for organizations operating in multi-national environments, ensuring contractual terms are consistently and accurately presented in the local language of the contracting party. The table works in conjunction with its base history table to provide a comprehensive audit trail of changes to both the note content and its translations over time.
Key Information Stored
The table's structure is designed to uniquely identify a specific historical translation of a standard note. Its primary key is a composite of three columns: STANDARD_NOTES_ID, LANGUAGE, and MAJOR_VERSION. The STANDARD_NOTES_ID is a foreign key that links the translation to a specific standard note definition in the OKE_K_STANDARD_NOTES_BH table. The LANGUAGE column stores the language code (e.g., 'US' for American English, 'F' for French) for the translated text. The MAJOR_VERSION column works in tandem with the STANDARD_NOTES_ID to pinpoint the exact historical version of the base note to which this translation corresponds. While the provided metadata focuses on keys, typical columns in such a translation table would include the translated note text itself (e.g., a column like NOTE_TEXT or DESCRIPTION) and possibly a SOURCE_LANG column indicating the original language of the source text.
Common Use Cases and Queries
A primary use case is generating contracts or contract amendments in a user's preferred language. The system queries this table to fetch the correct historical version of a standard note's translation for inclusion in the document. Another key scenario is auditing, where analysts track how a specific contractual clause evolved in different languages over various contract versions. A common reporting need is to identify all available translations for a given standard note in its current or a specific historical version.
Sample SQL to retrieve all historical French translations for a specific standard note:
- SELECT * FROM OKE.OKE_K_STANDARD_NOTES_TLH WHERE STANDARD_NOTES_ID = ¬e_id AND LANGUAGE = 'F' ORDER BY MAJOR_VERSION DESC;
Sample SQL to join with the base history table to get a complete historical picture:
- SELECT bh.MAJOR_VERSION, bh.CREATION_DATE, tlh.LANGUAGE, tlh.NOTE_TEXT FROM OKE_K_STANDARD_NOTES_BH bh, OKE_K_STANDARD_NOTES_TLH tlh WHERE bh.STANDARD_NOTES_ID = tlh.STANDARD_NOTES_ID AND bh.MAJOR_VERSION = tlh.MAJOR_VERSION AND bh.STANDARD_NOTES_ID = ¬e_id;
Related Objects
The table has a defined foreign key relationship, meaning it is a child table that depends on data from a parent table. The relationship is as follows:
- Parent Table: OKE_K_STANDARD_NOTES_BH
- Join Condition: OKE_K_STANDARD_NOTES_TLH.STANDARD_NOTES_ID = OKE_K_STANDARD_NOTES_BH.STANDARD_NOTES_ID AND OKE_K_STANDARD_NOTES_TLH.MAJOR_VERSION = OKE_K_STANDARD_NOTES_BH.MAJOR_VERSION
This relationship enforces referential integrity, ensuring that every translation history record (in TLH) corresponds to a valid base history record (in BH). The OKE_K_STANDARD_NOTES_BH table itself is the history table for the main transactional table (likely named OKE_K_STANDARD_NOTES_B), forming a complete chain for tracking changes to standard notes and their multilingual equivalents.
-
Table: OKE_K_STANDARD_NOTES_TLH
12.1.1
owner:OKE, object_type:TABLE, fnd_design_data:OKE.OKE_K_STANDARD_NOTES_TLH, object_name:OKE_K_STANDARD_NOTES_TLH, status:VALID, product: OKE - Project Contracts , description: Contract standard notes multi-lingual historical information , implementation_dba_data: OKE.OKE_K_STANDARD_NOTES_TLH ,
-
Table: OKE_K_STANDARD_NOTES_TLH
12.2.2
owner:OKE, object_type:TABLE, fnd_design_data:OKE.OKE_K_STANDARD_NOTES_TLH, object_name:OKE_K_STANDARD_NOTES_TLH, status:VALID, product: OKE - Project Contracts , description: Contract standard notes multi-lingual historical information , implementation_dba_data: OKE.OKE_K_STANDARD_NOTES_TLH ,
-
APPS.OKE_CONTRACT_PVT dependencies on OKE_K_STANDARD_NOTES_TLH
12.1.1
-
APPS.OKE_NOTE_PVT dependencies on OKE_K_STANDARD_NOTES_TLH
12.2.2
-
APPS.OKE_NOTE_PVT dependencies on OKE_K_STANDARD_NOTES_TLH
12.1.1
-
APPS.OKE_CONTRACT_PVT dependencies on OKE_K_STANDARD_NOTES_TLH
12.2.2
-
APPS.OKE_NOTE_PVT dependencies on OKE_K_STANDARD_NOTES_TL
12.1.1
-
APPS.OKE_NOTE_PVT dependencies on OKE_K_STANDARD_NOTES_TL
12.2.2
-
APPS.OKE_VERSION_PVT dependencies on STANDARD
12.1.1
-
APPS.OKE_VERSION_PVT dependencies on STANDARD
12.2.2
-
APPS.OKE_NOTE_PVT dependencies on STANDARD
12.1.1
-
VIEW: OKE.OKE_K_STANDARD_NOTES_TLH#
12.2.2
owner:OKE, object_type:VIEW, object_name:OKE_K_STANDARD_NOTES_TLH#, status:VALID,
-
APPS.OKE_NOTE_PVT dependencies on STANDARD
12.2.2
-
SYNONYM: APPS.OKE_K_STANDARD_NOTES_TLH
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKE_K_STANDARD_NOTES_TLH, status:VALID,
-
SYNONYM: APPS.OKE_K_STANDARD_NOTES_TLH
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKE_K_STANDARD_NOTES_TLH, status:VALID,
-
VIEW: OKE.OKE_K_STANDARD_NOTES_TLH#
12.2.2
-
APPS.OKE_CONTRACT_PVT dependencies on OKE_K_STANDARD_NOTES_TL
12.1.1
-
APPS.OKE_CONTRACT_PVT dependencies on OKE_K_STANDARD_NOTES_TL
12.2.2
-
APPS.OKE_NOTE_PVT dependencies on FND_LANGUAGES
12.2.2
-
APPS.OKE_NOTE_PVT dependencies on FND_LANGUAGES
12.1.1
-
TABLE: OKE.OKE_K_STANDARD_NOTES_TLH
12.2.2
owner:OKE, object_type:TABLE, fnd_design_data:OKE.OKE_K_STANDARD_NOTES_TLH, object_name:OKE_K_STANDARD_NOTES_TLH, status:VALID,
-
TABLE: OKE.OKE_K_STANDARD_NOTES_TLH
12.1.1
owner:OKE, object_type:TABLE, fnd_design_data:OKE.OKE_K_STANDARD_NOTES_TLH, object_name:OKE_K_STANDARD_NOTES_TLH, status:VALID,
-
VIEW: APPS.OKE_K_STANDARD_NOTES_VLH
12.1.1
-
VIEW: APPS.OKE_K_STANDARD_NOTES_VLH
12.2.2
-
APPS.OKE_CONTRACT_PVT dependencies on STANDARD
12.2.2
-
APPS.OKE_CONTRACT_PVT dependencies on STANDARD
12.1.1
-
APPS.OKE_NOTE_PVT SQL Statements
12.1.1
-
APPS.OKE_NOTE_PVT SQL Statements
12.2.2
-
APPS.OKE_NOTE_PVT dependencies on OKE_K_STANDARD_NOTES_BH
12.2.2
-
APPS.OKE_NOTE_PVT dependencies on OKE_K_STANDARD_NOTES_BH
12.1.1
-
APPS.OKE_CONTRACT_PVT dependencies on OKE_K_BILLING_METHODS_H
12.1.1
-
APPS.OKE_CONTRACT_PVT dependencies on OKE_K_BILLING_METHODS_H
12.2.2
-
Table: OKE_K_STANDARD_NOTES_BH
12.2.2
owner:OKE, object_type:TABLE, fnd_design_data:OKE.OKE_K_STANDARD_NOTES_BH, object_name:OKE_K_STANDARD_NOTES_BH, status:VALID, product: OKE - Project Contracts , description: Contract standard notes historical information , implementation_dba_data: OKE.OKE_K_STANDARD_NOTES_BH ,
-
APPS.OKE_CONTRACT_PVT dependencies on OKE_K_STANDARD_NOTES_BH
12.2.2
-
APPS.OKE_CONTRACT_PVT dependencies on OKE_K_BILLING_METHODS
12.1.1
-
Table: OKE_K_STANDARD_NOTES_BH
12.1.1
owner:OKE, object_type:TABLE, fnd_design_data:OKE.OKE_K_STANDARD_NOTES_BH, object_name:OKE_K_STANDARD_NOTES_BH, status:VALID, product: OKE - Project Contracts , description: Contract standard notes historical information , implementation_dba_data: OKE.OKE_K_STANDARD_NOTES_BH ,
-
APPS.OKE_CONTRACT_PVT dependencies on OKE_K_STANDARD_NOTES_BH
12.1.1
-
APPS.OKE_CONTRACT_PVT dependencies on OKE_K_BILLING_METHODS
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.OKE_NOTE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_NOTE_PVT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
View: OKE_K_STANDARD_NOTES_VLH
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKE.OKE_K_STANDARD_NOTES_VLH, object_name:OKE_K_STANDARD_NOTES_VLH, status:VALID, product: OKE - Project Contracts , description: Standard Notes History View , implementation_dba_data: APPS.OKE_K_STANDARD_NOTES_VLH ,
-
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
-
PACKAGE BODY: APPS.OKE_NOTE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKE_NOTE_PVT, 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