Search Results jtf_dsp_lgl_phys_map




Overview

The JTF_DSP_LGL_PHYS_MAP table is a core data object within the Oracle E-Business Suite CRM Foundation (JTF) module. It functions as a mapping repository that defines the relationship between logical media references and their corresponding physical storage locations. This mapping is contextual, as it is based on the specific site (MSITE_ID) and language, enabling the delivery of appropriate content in multi-site and multilingual deployments. Its primary role is to support the content management and delivery systems within Oracle CRM, ensuring that the correct physical media file (such as an image, document, or attachment) is retrieved and presented based on the user's context.

Key Information Stored

The table's structure centers on its primary key, LGL_PHYS_MAP_ID, which uniquely identifies each logical-to-physical mapping record. The metadata highlights three critical foreign key relationships that define the table's core data. The MSITE_ID column links to the JTF_MSITES_B table, anchoring the mapping to a specific site within the application. The ITEM_ID column references the JTF_AMV_ITEMS_B table, which typically stores information about content items. Finally, the ATTACHMENT_ID column links to the JTF_AMV_ATTACHMENTS table, pointing to the physical file or attachment details. Collectively, these columns store the essential linkages that allow the system to resolve a logical content request for a given site and language into a specific physical asset.

Common Use Cases and Queries

A primary use case involves the dynamic rendering of content on CRM pages, such as personalized marketing collateral or site-specific imagery. When a user accesses a page, the application queries this table using known parameters like site and language to find the correct physical file path or attachment ID for a logical content item. A typical query pattern would be:

  • SELECT attachment_id FROM jtf_dsp_lgl_phys_map WHERE msite_id = :p_site_id AND item_id = :p_logical_item_id;

This data is crucial for reporting on content deployment and localization efforts, allowing administrators to verify which physical assets are mapped for each site-language combination. Troubleshooting missing media often involves validating the existence and correctness of records in this mapping table.

Related Objects

As indicated by its foreign keys, JTF_DSP_LGL_PHYS_MAP is integrally connected to several other CRM Foundation tables. Its dependencies are primarily:

  • JTF_MSITES_B: Provides the site definition to which the mapping is scoped.
  • JTF_AMV_ITEMS_B: Contains the logical content item details being mapped.
  • JTF_AMV_ATTACHMENTS: Stores the physical attachment or media file details referenced by the map.

The table itself is referenced by the primary key constraint JTF_DSP_LGL_PHYS_MAP_PK. It serves as a central hub in the content delivery data model, sitting between the definition of sites and items and the physical storage of media assets.