Search Results jtf_notes_source_type_map
Overview
JTF_NOTES_SOURCE_TYPE_MAP is a CRM Foundation (JTF) base table that defines application- and object-specific note types within Oracle E-Business Suite 12.1.1 and 12.2.2. It serves as the configuration registry that links a Source Object (for example, a service request, an opportunity, or a contact) to the note types that are valid for that object. Applications query this mapping at runtime to determine which note classifications a user may select when attaching a note to a specific business entity, thereby enforcing consistency across the Notes infrastructure that supports Oracle CRM modules.
The table is owned by the JTF schema and holds VALID status in the ETRM data dictionary. Under the heuristic Data Vault classification derived from its foreign-key structure, the object is satellite-leaning. This suggests it is best modeled as a descriptive satellite attached to a business key hub (the note-type/object mapping identity) rather than as an independent hub or a pure link, since its columns primarily carry attributes describing the mapping relationship.
Key Information Stored
The table comprises eleven documented columns. The most significant are:
- NOTE_SOURCE_TYPE_MAP_ID — the surrogate primary key that uniquely identifies each source-object-to-note-type mapping row.
- SOURCE_OBJECT_CODE — the foreign key to JTF_OBJECTS_B that identifies the business object to which the note type applies.
- NOTE_TYPE — the note classification made available for the associated source object.
- END_DATE — the effective end date controlling when the mapping ceases to be active.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — standard audit columns recording who created and last modified each mapping.
- SECURITY_GROUP_ID — the foreign key to FND_SECURITY_GROUPS used for multi-tenant and operating-unit data segregation.
- ZD_EDITION_NAME — the editioning column supporting Online Patching (ADOP) in Release 12.2.x.
The unique index JTF_NOTES_STM_U2, defined over NOTE_SOURCE_TYPE_MAP_ID and ZD_EDITION_NAME, functions as a business-key candidate and reinforces the edition-aware uniqueness required in 12.2.2. The surrogate NOTE_SOURCE_TYPE_MAP_ID therefore remains the primary identifier, while SOURCE_OBJECT_CODE and NOTE_TYPE together describe the substantive mapping semantics.
Common Use Cases and Queries
Typical scenarios include resolving which note types are permitted for a given object, validating note captures, and building reporting extracts of configured note taxonomies. A representative query joining the object definition follows:
- Listing active note types per source object:
SELECT m.NOTE_SOURCE_TYPE_MAP_ID, o.OBJECT_CODE, m.NOTE_TYPE FROM JTF.JTF_NOTES_SOURCE_TYPE_MAP m, JTF.JTF_OBJECTS_B o WHERE m.SOURCE_OBJECT_CODE = o.OBJECT_CODE AND (m.END_DATE IS NULL OR m.END_DATE > SYSDATE); - Restricting by security group: add
AND m.SECURITY_GROUP_ID = :p_security_group_idto enforce data segregation. - Auditing recent configuration changes: filter on
LAST_UPDATE_DATEandLAST_UPDATED_BYto identify who altered note-type availability. - Validating orphan mappings: outer-join to JTF_OBJECTS_B and select rows where the object code resolves to NULL.
Related Objects
The most significant related objects are those connected through documented foreign keys and the shared Notes infrastructure:
- JTF_OBJECTS_B — referenced via SOURCE_OBJECT_CODE, providing the business object definition.
- FND_SECURITY_GROUPS — referenced via SECURITY_GROUP_ID, supplying data-access segregation.
- JTF_NOTES — the transactional notes table whose note types are governed by this mapping.
- JTF_NOTES_TL — the translatable notes table sharing the same note framework.
- JTF_OBJECTS_TL — the translated object definitions joined through the object code.
- FND_APPLICATION — for resolving the application context of the source object.
Together these objects support the configuration, validation, and reporting of note types across Oracle CRM Foundation and its dependent applications.
-
Table: JTF_NOTES_SOURCE_TYPE_MAP
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_NOTES_SOURCE_TYPE_MAP, object_name:JTF_NOTES_SOURCE_TYPE_MAP, status:VALID, product: JTF - CRM Foundation , description: JTF_NOTES_SOURCE_TYPE_MAP is the base table for defining application/object specific note types. , implementation_dba_data: JTF.JTF_NOTES_SOURCE_TYPE_MAP ,
-
Table: JTF_NOTES_SOURCE_TYPE_MAP
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_NOTES_SOURCE_TYPE_MAP, object_name:JTF_NOTES_SOURCE_TYPE_MAP, status:VALID, product: JTF - CRM Foundation , description: JTF_NOTES_SOURCE_TYPE_MAP is the base table for defining application/object specific note types. , implementation_dba_data: JTF.JTF_NOTES_SOURCE_TYPE_MAP ,
-
VIEW: JTF.JTF_NOTES_SOURCE_TYPE_MAP#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_NOTES_SOURCE_TYPE_MAP#, status:VALID,
-
VIEW: JTF.JTF_NOTES_SOURCE_TYPE_MAP#
12.2.2
-
SYNONYM: APPS.JTF_NOTES_SOURCE_TYPE_MAP
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_NOTES_SOURCE_TYPE_MAP, status:VALID,
-
SYNONYM: APPS.JTF_NOTES_SOURCE_TYPE_MAP
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_NOTES_SOURCE_TYPE_MAP, status:VALID,
-
TRIGGER: APPS.JTF_NOTES_SOURCE_TYPE_MAP+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:JTF_NOTES_SOURCE_TYPE_MAP+, status:VALID,
-
TRIGGER: APPS.JTF_NOTES_SOURCE_TYPE_MAP+
12.2.2
-
TABLE: JTF.JTF_NOTES_SOURCE_TYPE_MAP
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_NOTES_SOURCE_TYPE_MAP, object_name:JTF_NOTES_SOURCE_TYPE_MAP, status:VALID,
-
TABLE: JTF.JTF_NOTES_SOURCE_TYPE_MAP
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_NOTES_SOURCE_TYPE_MAP, object_name:JTF_NOTES_SOURCE_TYPE_MAP, status:VALID,
-
FUNCTION: APPS.JTF_NOTES_SOURCE_TYPE_MAP=
12.2.2
-
FUNCTION: APPS.JTF_NOTES_SOURCE_TYPE_MAP=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:JTF_NOTES_SOURCE_TYPE_MAP=, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
Table: JTF_OBJECTS_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_OBJECTS_B, object_name:JTF_OBJECTS_B, status:VALID, product: JTF - CRM Foundation , description: This table stores the details of objects(modules). , implementation_dba_data: JTF.JTF_OBJECTS_B ,
-
Table: JTF_OBJECTS_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_OBJECTS_B, object_name:JTF_OBJECTS_B, status:VALID, product: JTF - CRM Foundation , description: This table stores the details of objects(modules). , implementation_dba_data: JTF.JTF_OBJECTS_B ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: PUBLIC.DATABASE_PROPERTIES
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DATABASE_PROPERTIES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: SYS.DBMS_STANDARD
12.2.2
owner:SYS, object_type:PACKAGE, object_name:DBMS_STANDARD, status:VALID,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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 ,