Search Results jtf_msites_b
Overview
The JTF_MSITES_B table is a core data object within the Oracle E-Business Suite CRM Foundation (JTF) module. It serves as the primary repository for storing configuration and master data related to Mini Sites, which are also referred to as Specialty Stores. In the context of Oracle EBS, particularly versions 12.1.1 and 12.2.2, a Mini Site represents a specialized, often branded, subsection of a larger online storefront or commerce application. It enables businesses to create targeted shopping experiences with specific product assortments, pricing, languages, and currencies. The table's role is to define the foundational attributes of these sites, acting as a central reference point for the storefront's display logic, personalization, and multi-currency/multi-language capabilities.
Key Information Stored
The table's primary key is the MSITE_ID, a unique identifier for each Mini Site record. Based on the documented foreign key relationships, other critical columns include STORE_ID, which links the Mini Site to its parent store in the JTF_STORES_B table. The MSITE_ROOT_SECTION_ID column references the JTF_DSP_SECTIONS_B table, indicating the root content section or catalog structure for the site. For internationalization and localization, DEFAULT_LANGUAGE_CODE and DEFAULT_CURRENCY_CODE link to FND_LANGUAGES and FND_CURRENCIES, respectively, establishing the site's base language and transactional currency. The PROFILE_ID column connects to the JTF_PERZ_PROFILE table, enabling personalized content delivery rules for the Mini Site.
Common Use Cases and Queries
A primary use case is retrieving the configuration of active Mini Sites for a specific store to drive an e-commerce portal's navigation and content rendering. Administrators may query this table to audit site setups or to generate reports on the deployment of specialty stores across the organization. Common SQL patterns involve joining to the translated table (JTF_MSITES_TL) to get the site name in a desired language and to related setup tables for currencies and languages. For instance, a basic query to list Mini Sites with their default settings might be:
- SELECT b.MSITE_ID, tl.NAME, b.DEFAULT_CURRENCY_CODE, b.DEFAULT_LANGUAGE_CODE FROM JTF.JTF_MSITES_B b, JTF.JTF_MSITES_TL tl WHERE b.MSITE_ID = tl.MSITE_ID AND tl.LANGUAGE = USERENV('LANG');
Another critical scenario involves data integrity checks, using the foreign key relationships to identify orphaned records or validate configurations before deployment.
Related Objects
The JTF_MSITES_B table has extensive relationships within the CRM Foundation schema, as documented in the ETRM. It is the parent table for numerous child entities that store supplemental Mini Site data:
- JTF_MSITES_TL: Translation table for multilingual site names (join on MSITE_ID).
- JTF_DSP_MSITE_SCT_ITEMS, JTF_DSP_MSITE_SCT_SECTS: Define the specific sections and items displayed in the Mini Site (join on MINI_SITE_ID).
- JTF_MSITE_CURRENCIES & JTF_MSITE_LANGUAGES: Store the additional currencies and languages supported beyond the defaults (join on MSITE_ID).
- JTF_MSITE_ORGS & JTF_MSITE_RESPS_B: Control organization and responsibility-based access to the Mini Site (join on MSITE_ID).
- JTF_MSITE_PRTY_ACCSS: Manages party-level access rules (join on MSITE_ID).
- JTF_DSP_LGL_PHYS_MAP: Used for content display mapping (referenced by MSITE_ID).
It also references key master data tables: JTF_STORES_B (STORE_ID), JTF_DSP_SECTIONS_B (MSITE_ROOT_SECTION_ID), FND_LANGUAGES, FND_CURRENCIES, and JTF_PERZ_PROFILE.
-
Table: JTF_MSITES_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_MSITES_B, object_name:JTF_MSITES_B, status:VALID, product: JTF - CRM Foundation , description: Stores Mini Site (Specialty Stores) Information. , implementation_dba_data: JTF.JTF_MSITES_B ,
-
Table: JTF_MSITES_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_MSITES_B, object_name:JTF_MSITES_B, status:VALID, product: JTF - CRM Foundation , description: Stores Mini Site (Specialty Stores) Information. , implementation_dba_data: JTF.JTF_MSITES_B ,
-
APPS.JTF_MSITE_RESP_PVT dependencies on JTF_MSITES_B
12.2.2
-
APPS.JTF_MINISITERUNTIME_PVT dependencies on JTF_MSITES_B
12.1.1
-
APPS.JTF_DSP_MSITE_SCT_ITEM_PVT dependencies on JTF_MSITES_B
12.1.1
-
APPS.JTF_DSPMGRVALIDATION_GRP dependencies on JTF_MSITES_B
12.1.1
-
APPS.JTF_DSP_SECTION_ITEM_PVT dependencies on JTF_MSITES_B
12.1.1
-
APPS.JTF_MSITE_GRP dependencies on JTF_MSITES_B
12.2.2
-
APPS.JTF_DSPMGRVALIDATION_GRP dependencies on JTF_MSITES_B
12.2.2
-
APPS.JTF_MSITE_PRTY_ACCSS_PVT dependencies on JTF_MSITES_B
12.1.1
-
APPS.JTF_MSITE_PRTY_ACCSS_MGR_PVT dependencies on JTF_MSITES_B
12.1.1
-
APPS.JTF_DSP_MSITE_SCT_ITEM_PVT dependencies on JTF_MSITES_B
12.2.2
-
APPS.JTF_MSITE_PRTY_ACCSS_MGR_PVT dependencies on JTF_MSITES_B
12.2.2
-
APPS.JTF_MSITE_RESP_PVT dependencies on JTF_MSITES_B
12.1.1
-
APPS.JTF_DSP_MSITE_SCT_SECT_PVT dependencies on JTF_MSITES_B
12.2.2
-
APPS.JTF_DSP_SECTION_ITEM_PVT dependencies on JTF_MSITES_B
12.2.2
-
APPS.JTF_MSITE_GRP dependencies on JTF_MSITES_B
12.1.1
-
APPS.JTF_DSP_SECTION_GRP dependencies on JTF_MSITES_B
12.1.1
-
APPS.JTF_DSP_MSITE_SCT_SECT_PVT dependencies on JTF_MSITES_B
12.1.1
-
APPS.JTF_DSP_SECTION_GRP dependencies on JTF_MSITES_B
12.2.2
-
APPS.JTF_MINISITERUNTIME_PVT dependencies on JTF_MSITES_B
12.2.2
-
APPS.JTF_MSITE_PRTY_ACCSS_PVT dependencies on JTF_MSITES_B
12.2.2
-
APPS.JTF_MINISITERUNTIME_PVT SQL Statements
12.1.1
-
APPS.JTF_MINISITERUNTIME_PVT SQL Statements
12.2.2
-
APPS.JTF_MINISITERUNTIME_PVT dependencies on JTF_MSITE_LANGUAGES
12.1.1
-
Table: JTF_MSITES_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_MSITES_TL, object_name:JTF_MSITES_TL, status:VALID, product: JTF - CRM Foundation , description: Translations for JTF_MSITES_B , implementation_dba_data: JTF.JTF_MSITES_TL ,
-
APPS.JTF_MINISITERUNTIME_PVT dependencies on JTF_MSITE_CURRENCIES
12.2.2
-
APPS.JTF_DSPMGRVALIDATION_GRP dependencies on JTF_MSITE_LANGUAGES
12.2.2
-
APPS.JTF_MINISITERUNTIME_PVT dependencies on JTF_MSITE_CURRENCIES
12.1.1
-
Table: JTF_MSITES_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_MSITES_TL, object_name:JTF_MSITES_TL, status:VALID, product: JTF - CRM Foundation , description: Translations for JTF_MSITES_B , implementation_dba_data: JTF.JTF_MSITES_TL ,
-
APPS.JTF_MINISITERUNTIME_PVT dependencies on JTF_MSITE_PRTY_ACCSS
12.1.1
-
APPS.JTF_MINISITERUNTIME_PVT dependencies on JTF_MSITE_LANGUAGES
12.2.2
-
APPS.JTF_MSITE_GRP dependencies on DUAL
12.1.1
-
APPS.JTF_MSITE_GRP SQL Statements
12.2.2
-
APPS.JTF_MSITE_GRP SQL Statements
12.1.1
-
SYNONYM: APPS.JTF_MSITES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_MSITES_B, status:VALID,
-
VIEW: JTF.JTF_MSITES_B#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_MSITES_B#, status:VALID,
-
SYNONYM: APPS.JTF_MSITES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_MSITES_B, status:VALID,
-
APPS.JTF_DSPMGRVALIDATION_GRP dependencies on JTF_MSITE_LANGUAGES
12.1.1
-
APPS.JTF_MINISITERUNTIME_PVT dependencies on JTF_MSITES_TL
12.2.2
-
APPS.JTF_MINISITERUNTIME_PVT dependencies on JTF_MSITE_PRTY_ACCSS
12.2.2
-
APPS.JTF_MSITE_GRP dependencies on DUAL
12.2.2
-
VIEW: APPS.JTF_MSITES_VL
12.2.2
-
APPS.JTF_DSPMGRVALIDATION_GRP SQL Statements
12.1.1
-
APPS.JTF_MINISITERUNTIME_PVT dependencies on JTF_MSITES_TL
12.1.1
-
PACKAGE BODY: APPS.JTF_MINISITERUNTIME_PVT
12.1.1
-
VIEW: APPS.JTF_MSITES_VL
12.1.1
-
PACKAGE BODY: APPS.JTF_MINISITERUNTIME_PVT
12.2.2
-
APPS.JTF_DSPMGRVALIDATION_GRP SQL Statements
12.2.2
-
TABLE: JTF.JTF_MSITES_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_MSITES_B, object_name:JTF_MSITES_B, status:VALID,