Search Results decoded_source_code




Overview

JTF_NOTES_VL is the primary Multi-Lingual Support (MLS) view over Notes in Oracle E-Business Suite, owned by the APPS schema and defined within the JTF – CRM Foundation product module. It unites the transactional note records held in JTF_NOTES_B with their translated, language-specific text held in JTF_NOTES_TL, presenting a single queryable interface for all notes attached to any object in the EBS data model. Because notes are stored generically against a source object identifier and code rather than dedicated foreign keys, JTF_NOTES_VL is the canonical access point for retrieving note content, context, and status irrespective of the owning entity.

The view is central to reporting and integration because it abstracts the underlying MLS join and enriches each row with derived values — user names, lookup meanings, and object descriptions — that would otherwise require multiple joins. Its status is VALID in the ETRM 12.2.2 dictionary, and it remains valid across 12.1.1 and 12.2.2 releases.

Underlying Base Objects

The view is defined over the following documented objects:

Key Columns

Common Use Cases and Queries

The view is used to list all notes for an entity, to filter notes by type or status, and to retrieve note text in the session language. The examples below reflect the polymorphic relationship model, including notes attached to party relationships.

  • Retrieve all notes for a specific source object, e.g. a party relationship.
  • Filter notes by status or type using the decoded meanings.
  • Report note activity by creator with resolved user names.

SELECT jtf_note_id, source_object_code, decoded_source_code,
  notes, note_status_meaning, entered_by_name
FROM apps.jtf_notes_vl
WHERE source_object_code = 'PARTY_RELATIONSHIP'
  AND source_object_id = :p_relationship_id;

Because the view restricts translation rows to the session language via USERENV('LANG'), queries automatically return text in the operator's locale, making it suitable for both concurrent reporting and integrated API retrieval across the party and CRM relationship models.

  • View: JTF_NOTES_VL 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:JTF.JTF_NOTES_VL,  object_name:JTF_NOTES_VL,  status:VALID,  product: JTF - CRM Foundationdescription: MLS view over JTF_NOTES_B and JTF_NOTES_TL. Main view to query up all Notes related to any object. ,  implementation_dba_data: APPS.JTF_NOTES_VL

  • View: JTF_NOTES_VL 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:JTF.JTF_NOTES_VL,  object_name:JTF_NOTES_VL,  status:VALID,  product: JTF - CRM Foundationdescription: MLS view over JTF_NOTES_B and JTF_NOTES_TL. Main view to query up all Notes related to any object. ,  implementation_dba_data: APPS.JTF_NOTES_VL