Search Results pv_ge_chklst_items_b




Overview

The PV_GE_CHKLST_ITEMS_B table is a core data structure within the Oracle E-Business Suite Partner Management (PV) module, specifically in versions 12.1.1 and 12.2.2. It functions as the primary transactional table for storing checklist or task items that must be completed as part of partner management processes. Its role is to serve as a master container for defining individual line-item tasks that can be associated with various entities, such as partner programs, to ensure compliance, track progress, and manage partner onboarding or certification workflows. The '_B' suffix indicates it is the base table for the entity, holding the language-independent transactional data.

Key Information Stored

While the provided metadata does not list specific columns, the documented primary and foreign key relationships reveal its critical structural elements. The table's primary identifier is the CHECKLIST_ITEM_ID column, which uniquely defines each task item. A significant foreign key column is USED_BY_ENTITY_ID, which links the checklist item to a specific entity in the system. The documented relationship shows this column references the PV_PARTNER_PROGRAM_B table, indicating a primary use case where checklist items are associated with partner program definitions. Typically, such a table would also store columns for item sequence, status, creation and last update dates, and attributes defining the item's completion criteria.

Common Use Cases and Queries

This table is central to operational and reporting activities concerning partner task management. Common use cases include generating a list of all pending tasks for a specific partner program, tracking the completion status of onboarding checklists, and administering the master list of available task items. A typical query would join this table to the partner program table to retrieve configured checklist items. For example:

  • Retrieve all checklist items for a specific partner program:
    SELECT chi.* FROM pv_ge_chklst_items_b chi, pv_partner_program_b ppg
    WHERE chi.used_by_entity_id = ppg.partner_program_id
    AND ppg.name = '<Program_Name>'
    ORDER BY chi.seq_number;
  • Identify checklist items awaiting response by joining to the PV_GE_CHKLST_RESPONSES table to filter for items without a completed response record.

Related Objects

The table maintains defined relationships with several other key objects in the Partner Management schema, as documented in the foreign key metadata.

  • Referenced Table (Outbound FK): PV_PARTNER_PROGRAM_B. The column PV_GE_CHKLST_ITEMS_B.USED_BY_ENTITY_ID references this table, linking checklist items to a specific partner program entity.
  • Referencing Tables (Inbound FKs):
    • PV_GE_CHKLST_ITEMS_TL: The translation table. Its CHECKLIST_ITEM_ID column references PV_GE_CHKLST_ITEMS_B.CHECKLIST_ITEM_ID to store language-specific names and descriptions for each task item.
    • PV_GE_CHKLST_RESPONSES: The transactional response table. Its CHECKLIST_ITEM_ID column references PV_GE_CHKLST_ITEMS_B.CHECKLIST_ITEM_ID, creating a record each time a partner provides a response or completion for a specific checklist item.