Search Results note_context_value
Overview
JTF_NOTE_CONTEXTS_V is a database view owned by the APPS schema in Oracle E-Business Suite releases 12.1.1 and 12.2.2. It belongs to the JTF product family, commonly referred to as CRM Foundation, which underpins shared CRM functionality across Oracle's sales, service, and marketing modules. The view is defined over the JTF_NOTE_CONTEXTS base table and enriches each row with two derived values that are not stored directly in the base table: a human-readable note context type meaning and a resolved note context value. This design makes the view a convenient reporting and integration layer, sparing callers from having to join to the object definitions or invoke the note context resolution API themselves.
Notes in CRM Foundation can be associated with many different entities through a flexible context mechanism. Rather than hard-coding relationships, JTF stores a context type (such as an object code) and a context type identifier, allowing a single notes infrastructure to serve multiple business objects. The view translates those generic codes into meaningful labels and values for downstream consumption.
Underlying Base Objects
According to the documented view text, JTF_NOTE_CONTEXTS_V is defined over three referenced objects:
- JTF_NOTE_CONTEXTS (synonym) — the base table holding the note context records, including identifiers, timestamps, and audit columns.
- JTF_OBJECTS_VL (view) — joined to JTF_NOTE_CONTEXTS on
A.NOTE_CONTEXT_TYPE = B.OBJECT_CODE, supplying the NAME column exposed as NOTE_CONTEXT_TYPE_MEANING. - JTF_NOTES_PKG (package) — its function
GET_NOTE_CONTEXT_VALUEis invoked with the note context type and note context type id to derive the NOTE_CONTEXT_VALUE column.
The join to JTF_OBJECTS_VL is an inner join on OBJECT_CODE, so a context type that has no matching object definition will not appear in the view result set. The context value resolution is performed row-by-row through the packaged function, which means performance depends on the function's implementation and indexing.
Key Columns
- NOTE_CONTEXT_ID — Primary identifier for the note context record.
- JTF_NOTE_ID — Foreign key linking the context to its parent note.
- NOTE_CONTEXT_TYPE — The object code identifying the type of entity the note is attached to.
- NOTE_CONTEXT_TYPE_MEANING — The descriptive name of the context type, derived from JTF_OBJECTS_VL.NAME.
- NOTE_CONTEXT_TYPE_ID — The identifier of the specific context instance (for example, a particular customer or opportunity).
- NOTE_CONTEXT_VALUE — The resolved display value for the context, computed by JTF_NOTES_PKG.GET_NOTE_CONTEXT_VALUE.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — Standard EBS audit columns.
Common Use Cases and Queries
The view is typically used to report on notes and the business entities they are attached to, without needing to resolve context meanings manually. A common pattern retrieves all contexts for a given note:
SELECT note_context_id, jtf_note_id, note_context_type, note_context_type_meaning, note_context_type_id, note_context_value FROM jtf_note_contexts_v WHERE jtf_note_id = :p_note_id;
Administrators may also use it to audit which context types are in active use:
SELECT note_context_type, note_context_type_meaning, COUNT(*) FROM jtf_note_contexts_v GROUP BY note_context_type, note_context_type_meaning;
Because NOTE_CONTEXT_VALUE is computed through a PL/SQL function, queries returning large row sets can be expensive; restricting results by JTF_NOTE_ID, NOTE_CONTEXT_TYPE, or NOTE_CONTEXT_TYPE_ID is advisable. The view should be treated as read-only, with inserts and updates directed at the JTF_NOTE_CONTEXTS base table or the supported notes APIs.
-
View: JTF_NOTE_CONTEXTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_NOTE_CONTEXTS_V, object_name:JTF_NOTE_CONTEXTS_V, status:VALID, product: JTF - CRM Foundation , description: View over JTF_NOTE_CONTEXTS base table that additionally calculates the note context meaning from the note context type and note context type id. , implementation_dba_data: APPS.JTF_NOTE_CONTEXTS_V ,
-
View: JTF_NOTE_CONTEXTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_NOTE_CONTEXTS_V, object_name:JTF_NOTE_CONTEXTS_V, status:VALID, product: JTF - CRM Foundation , description: View over JTF_NOTE_CONTEXTS base table that additionally calculates the note context meaning from the note context type and note context type id. , implementation_dba_data: APPS.JTF_NOTE_CONTEXTS_V ,
-
VIEW: APPS.JTF_NOTE_CONTEXTS_V
12.2.2
-
VIEW: APPS.JTF_NOTE_CONTEXTS_V
12.1.1
-
VIEW: APPS.JTF_NOTE_CONTEXTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_NOTE_CONTEXTS_V, object_name:JTF_NOTE_CONTEXTS_V, status:VALID,
-
VIEW: APPS.JTF_NOTE_CONTEXTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_NOTE_CONTEXTS_V, object_name:JTF_NOTE_CONTEXTS_V, status:VALID,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,