Search Results amv_d_compl_rule_items




Overview

The JTF_AMV_ITEMS_B table is a core data repository within the Oracle E-Business Suite CRM Foundation (JTF) module, specifically designed to store document metadata. Its primary role is to serve as the master transactional table for the Oracle Application Management (AMV) component, which manages documents, articles, and other content deliverables across the application. This table acts as the central hub for content identification and storage, enabling features such as knowledge management, content personalization, and document delivery within the CRM and related EBS functionalities. Its integrity is maintained through a primary key on ITEM_ID and enforced relationships with numerous other application tables.

Key Information Stored

While the provided metadata does not list specific columns, the structure and foreign key relationships indicate the table stores essential identifiers and attributes for a document entity. The primary column is ITEM_ID, which serves as the unique identifier for each document record. Critical foreign key columns include APPLICATION_ID, linking the document to a specific EBS application via FND_APPLICATION, and LANGUAGE_CODE, referencing the document's base language in FND_LANGUAGES. Other stored data likely encompasses document status, creation and last update dates, version information, and type classifications, forming the foundational record for all associated content details stored in related tables like JTF_AMV_ITEMS_TL for translated descriptions.

Common Use Cases and Queries

This table is central to queries that retrieve document master records for reporting, integration, and data validation. Common scenarios include generating a list of all documents for a specific application, auditing document creation, or troubleshooting content delivery issues. A typical query would join to its translation table to fetch language-specific descriptions. For example, to retrieve active documents for a given application, one might use:

  • SELECT b.ITEM_ID, tl.NAME, b.CREATION_DATE FROM JTF.JTF_AMV_ITEMS_B b, JTF.JTF_AMV_ITEMS_TL tl WHERE b.ITEM_ID = tl.ITEM_ID AND b.APPLICATION_ID = 275 AND tl.LANGUAGE = USERENV('LANG');

Data fixes often target this table's ITEM_ID when resolving orphaned records in dependent tables like JTF_AMV_ITEM_KEYWORDS or AMV_D_SIMPLE_RULE_ITEMS.

Related Objects

As evidenced by the extensive foreign key metadata, JTF_AMV_ITEMS_B is a highly referenced parent table. Key related objects include:

  • JTF_AMV_ITEMS_TL: The translation table storing language-specific names and descriptions for the document.
  • JTF_AMV_ITEM_AUTHORS & JTF_AMV_ITEM_KEYWORDS: Tables storing supplemental document metadata.
  • AMV_D_SIMPLE_RULE_ITEMS & AMV_D_COMPL_RULE_ITEMS: Tables linking documents to business rules for content targeting and personalization.
  • IBE_DSP_* and JTF_DSP_* tables (e.g., IBE_DSP_SECTIONS_B): Indicate integration with the iStore and Dispatcher modules for web content and template management.
  • FND_APPLICATION & FND_LANGUAGES: Referenced foundational tables for application and language validation.

This network of relationships underscores the table's critical position in the EBS content management architecture.