Search Results jtf_notes_tl
Overview
The JTF_NOTES_TL table is a core data object within the Oracle E-Business Suite (EBS) CRM technology stack. It functions as the translated base table for the Notes module, which is part of the JTF (CRM Foundation) product family. Its primary role is to store the language-specific, translatable text of notes created across the EBS application, enabling the system to present note content in a user's preferred language. This table works in conjunction with its base table, JTF_NOTES_B, which holds the non-translatable, language-independent attributes of a note. The existence of this Translation Table (TL) is a standard architectural pattern in Oracle Applications to support multilingual implementations.
Key Information Stored
The table stores the translated textual content and subject for each note entry. Based on standard EBS translation table conventions and the provided metadata, its critical columns include:
- JTF_NOTE_ID: The primary foreign key that uniquely links each translated row to its corresponding master record in the JTF_NOTES_B table.
- LANGUAGE: A column (typically holding a language code like 'US' for American English) that, together with JTF_NOTE_ID, forms the table's composite primary key (JTF_NOTES_TL_PK). This identifies a specific translation for a specific note.
- SOURCE_LANG: A standard column in TL tables that records the original language in which the data was entered.
- NOTE and NOTE_DETAIL (or similarly named columns): These hold the actual translated text of the note's subject and body content, respectively.
Common Use Cases and Queries
This table is central to any process involving the display or reporting of notes in a multilingual environment. A common use case is generating user-facing reports where note text must appear in the session language of the report viewer. Application logic will automatically query this table based on the user's session language setting. For direct reporting or data extraction, a typical query joins JTF_NOTES_TL to its base table and filters by the desired language. For example, to retrieve notes in American English created for a specific object, such as a customer account (stored in a column like JTF_NOTES_B.SOURCE_OBJECT_ID), one might use:
SELECT b.jtf_note_id, tl.note, tl.note_detail, b.created_by, b.creation_date
FROM jtf.jtf_notes_b b,
jtf.jtf_notes_tl tl
WHERE b.jtf_note_id = tl.jtf_note_id
AND tl.language = 'US'
AND b.source_object_code = 'HZ_PARTIES'
AND b.source_object_id = :cust_account_id;
Related Objects
The most critical related object is the base table JTF_NOTES_B, with which JTF_NOTES_TL maintains a mandatory foreign key relationship via the JTF_NOTE_ID column. The Notes module is integrated throughout EBS; therefore, the JTF_NOTES_B table itself is referenced by numerous entities across CRM, Service, and other product families. While the provided metadata lists no direct foreign keys into JTF_NOTES_TL, it is commonly accessed via public APIs, such as those in the JTF_NOTES_PUB package, which provide the standard, supported methods for creating, updating, and querying note data. Application forms and reports will query this table indirectly through these APIs or via language-aware views built on top of the base and translation tables.
-
Table: JTF_NOTES_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_NOTES_TL, object_name:JTF_NOTES_TL, status:VALID, product: JTF - CRM Foundation , description: Translated base table for Notes module. , implementation_dba_data: JTF.JTF_NOTES_TL ,
-
Table: JTF_NOTES_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_NOTES_TL, object_name:JTF_NOTES_TL, status:VALID, product: JTF - CRM Foundation , description: Translated base table for Notes module. , implementation_dba_data: JTF.JTF_NOTES_TL ,
-
APPS.CS_SERVICEREQUEST_PUB dependencies on JTF_NOTES_TL
12.2.2
-
APPS.IEU_UWQ_TASK_INFO_PKG dependencies on JTF_NOTES_TL
12.2.2
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on JTF_NOTES_TL
12.2.2
-
APPS.CAC_NOTES_PVT dependencies on JTF_NOTES_TL
12.1.1
-
APPS.CSF_MAINTAIN_GRP dependencies on JTF_NOTES_TL
12.2.2
-
APPS.JTF_NOTES_UTIL_PVT dependencies on JTF_NOTES_TL
12.1.1
-
APPS.OKL_CS_LC_CONTRACT_PVT dependencies on JTF_NOTES_TL
12.2.2
-
APPS.OKS_K_ACTIONS_PVT dependencies on JTF_NOTES_TL
12.2.2
-
APPS.JTF_NOTES_PUB dependencies on JTF_NOTES_TL
12.2.2
-
APPS.JTF_NOTES_UTIL_PVT dependencies on JTF_NOTES_TL
12.2.2
-
APPS.LNS_WORK_FLOW dependencies on JTF_NOTES_TL
12.2.2
-
APPS.CS_ERES_INT_PKG dependencies on JTF_NOTES_TL
12.2.2
-
APPS.CAC_NOTE_PURGE_PVT dependencies on JTF_NOTES_TL
12.1.1
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on JTF_NOTES_TL
12.1.1
-
APPS.OKS_IMPORT_TEST_INSERT dependencies on JTF_NOTES_TL
12.1.1
-
APPS.CSF_MAINTAIN_GRP dependencies on JTF_NOTES_TL
12.1.1
-
APPS.IEU_UWQ_TASK_INFO_PKG dependencies on JTF_NOTES_TL
12.1.1
-
APPS.CS_SR_CTX_PKG dependencies on JTF_NOTES_TL
12.1.1
-
APPS.CAC_NOTES_PVT dependencies on JTF_NOTES_TL
12.2.2
-
APPS.OKL_CS_LC_CONTRACT_PVT dependencies on JTF_NOTES_TL
12.1.1
-
APPS.AST_NOTE_PACKAGE dependencies on JTF_NOTES_TL
12.1.1
-
APPS.JTF_NOTES_PKG dependencies on JTF_NOTES_TL
12.1.1
-
APPS.OKS_K_ACTIONS_PVT dependencies on JTF_NOTES_TL
12.1.1
-
APPS.OKS_COVERAGES_PVT dependencies on JTF_NOTES_TL
12.1.1
-
APPS.OKS_COVERAGES_PVT dependencies on JTF_NOTES_TL
12.2.2
-
APPS.CAC_NOTE_PURGE_PVT dependencies on JTF_NOTES_TL
12.2.2
-
APPS.AHL_PRD_PRINT_PVT dependencies on JTF_NOTES_TL
12.2.2
-
APPS.ASO_NOTES_INT dependencies on JTF_NOTES_TL
12.2.2
-
APPS.ASO_NOTES_INT dependencies on JTF_NOTES_TL
12.1.1
-
APPS.JTF_NOTES_PUB dependencies on JTF_NOTES_TL
12.1.1
-
APPS.OKS_IMPORT_TEST_INSERT dependencies on JTF_NOTES_TL
12.2.2
-
APPS.JTF_NOTES_PKG dependencies on JTF_NOTES_TL
12.2.2
-
APPS.CSM_EMAIL_QUERY_PKG dependencies on JTF_NOTES_TL
12.2.2
-
APPS.OKS_K_ACTIONS_PVT dependencies on JTF_NOTES_TL
12.2.2
-
APPS.AST_NOTE_PACKAGE dependencies on JTF_NOTES_TL
12.2.2
-
APPS.OKS_K_ACTIONS_PVT dependencies on JTF_NOTES_TL
12.1.1
-
APPS.CS_ERES_INT_PKG dependencies on JTF_NOTES_TL
12.1.1
-
APPS.CS_SR_CTX_PKG dependencies on JTF_NOTES_TL
12.2.2
-
APPS.CS_SERVICEREQUEST_PUB dependencies on JTF_NOTES_TL
12.2.2
-
APPS.IEU_UWQ_TASK_INFO_PKG dependencies on JTF_NOTES_B
12.1.1
-
APPS.CAC_NOTES_PVT dependencies on JTF_NOTES_B
12.1.1
-
APPS.JTF_NOTES_PKG dependencies on FND_LANGUAGES
12.2.2
-
APPS.JTF_NOTES_PUB dependencies on JTF_NOTES_B
12.2.2
-
APPS.JTF_NOTES_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.IEU_UWQ_TASK_INFO_PKG dependencies on JTF_NOTE_CONTEXTS
12.2.2
-
APPS.IEU_UWQ_TASK_INFO_PKG dependencies on FND_LOOKUPS
12.1.1
-
APPS.IEU_UWQ_TASK_INFO_PKG dependencies on FND_LOOKUPS
12.2.2
-
APPS.IEU_UWQ_TASK_INFO_PKG dependencies on JTF_NOTES_B
12.2.2