Search Results ibe_msite_information




Overview

The IBE_MSITE_INFORMATION table is a core data object within the Oracle E-Business Suite (EBS) iStore (IBE) module. It functions as an extension table, storing supplementary and detailed attributes for specialty stores, which are known as microsites (MSITES). In the context of Oracle iStore, a microsite represents a specialized, branded storefront that can be tailored for specific customer segments, product lines, or marketing campaigns. While the primary store definition resides in the parent table IBE_MSITES_B, this table holds the additional, descriptive information necessary for the full configuration and operation of these specialized storefronts within the e-commerce environment.

Key Information Stored

The table's primary key is the system-generated identifier MSITE_INFORMATION_ID. Its most critical foreign key is MSITE_ID, which links each record directly to a single microsite defined in IBE_MSITES_B. While the exact column list is not detailed in the provided excerpt, typical information stored in such an extension table for iStore microsites includes store-specific descriptive text, detailed contact or support information, custom display attributes, thematic preferences, and configuration flags that control specialized storefront behavior. This design separates essential structural data from extensible descriptive data, adhering to common EBS data modeling patterns.

Common Use Cases and Queries

This table is primarily accessed during the rendering and administration of iStore microsites. Common operational scenarios include retrieving all extended attributes for a specific storefront to populate its user interface, updating store descriptions or policies, and generating reports on microsite configurations. A fundamental query pattern involves joining to the main MSITES table to get a complete store definition.

  • Retrieve Full Microsite Details: SELECT msb.*, msi.* FROM ibe_msites_b msb, ibe_msite_information msi WHERE msb.msite_id = msi.msite_id AND msb.msite_id = :p_msite_id;
  • Reporting on Specialty Stores: Data from this table is often combined with other iStore objects (like IBE_DSP_MSITE_CTX_DTLS) for analytics on the setup and usage of various branded storefronts.

Related Objects

The IBE_MSITE_INFORMATION table maintains a direct and essential relationship with the primary microsite definition table, as documented in the provided metadata.

  • IBE_MSITES_B (Foreign Key Relationship): This is the primary parent table. The column IBE_MSITE_INFORMATION.MSITE_ID is a foreign key referencing IBE_MSITES_B.MSITE_ID. This relationship ensures that every record in IBE_MSITE_INFORMATION is associated with one and only one defined microsite. Any query for comprehensive microsite data must join these two tables on the MSITE_ID column.

As an extension table, it is also likely referenced by various iStore application programming interfaces (APIs) and user interface forms responsible for managing microsite setup and maintenance, though these are not explicitly listed in the provided excerpt.

  • Table: IBE_MSITE_INFORMATION 12.2.2

    owner:IBE,  object_type:TABLE,  fnd_design_data:IBE.IBE_MSITE_INFORMATION,  object_name:IBE_MSITE_INFORMATION,  status:VALID,  product: IBE - iStoredescription: This Table Stores Additional Information about Specialty Stores ,  implementation_dba_data: IBE.IBE_MSITE_INFORMATION

  • Table: IBE_MSITE_INFORMATION 12.1.1

    owner:IBE,  object_type:TABLE,  fnd_design_data:IBE.IBE_MSITE_INFORMATION,  object_name:IBE_MSITE_INFORMATION,  status:VALID,  product: IBE - iStoredescription: This Table Stores Additional Information about Specialty Stores ,  implementation_dba_data: IBE.IBE_MSITE_INFORMATION

  • Table: IBE_MSITES_B 12.2.2

    owner:IBE,  object_type:TABLE,  fnd_design_data:IBE.IBE_MSITES_B,  object_name:IBE_MSITES_B,  status:VALID,  product: IBE - iStoredescription: Stores Mini Site (Specialty Stores) Information. ,  implementation_dba_data: IBE.IBE_MSITES_B

  • Table: IBE_MSITES_B 12.1.1

    owner:IBE,  object_type:TABLE,  fnd_design_data:IBE.IBE_MSITES_B,  object_name:IBE_MSITES_B,  status:VALID,  product: IBE - iStoredescription: Stores Mini Site (Specialty Stores) Information. ,  implementation_dba_data: IBE.IBE_MSITES_B