Search Results chv_schedule_items




Overview

The CHV_SCHEDULE_ITEMS table, owned by the PO schema, is a core transactional object within the Oracle E-Business Suite Supplier Scheduling (CHV) module. It stores the item-level detail lines that make up the supplier schedules generated and maintained by Oracle Supplier Scheduling. Each record represents a single scheduled item associated with a supplier schedule header, capturing the planning method, item identifiers, purchase order references, cumulative quantities, and receipt information that drive communication of demand to suppliers. In Oracle EBS 12.1.1 and 12.2.2, this table is central to the scheduling, confirm, and purge processes that keep supplier-facing schedules synchronized with internal planning data.

From a Data Vault modeling perspective, the metadata's heuristic classification identifies this object as standalone. This suggests the table functions as an independent hub-like entity in a dimensional or Data Vault model, rather than being modeled as a pure link or satellite. Practitioners designing analytical models may therefore treat SCHEDULE_ITEM_ID as a business key of a hub, with the descriptive and quantity columns modeled as satellite attributes.

Key Information Stored

CHV_SCHEDULE_ITEMS contains 43 documented columns. The most significant are:

Common Use Cases and Queries

Typical scenarios include reporting schedule content by item, reconciling cumulative quantities against receipts, and identifying schedule items flagged for rebuild or purge. A representative query retrieves all items for a given schedule:

SELECT schedule_item_id, schedule_id, organization_id, item_id,
       item_planning_method, starting_cum_quantity
FROM   po.chv_schedule_items
WHERE  schedule_id = :p_schedule_id;

To find items awaiting confirmation, filter on ITEM_CONFIRM_STATUS. For purge maintenance, join to the referenced CHV_PURGE_SCHEDULE_LIST via SCHEDULE_ITEM_ID to determine which items are slated for removal. Analytics commonly aggregate STARTING_AUTH_QUANTITY by ITEM_ID and ORGANIZATION_ID to project supplier demand.

Related Objects

The primary documented relationship is the foreign key from CHV_SCHEDULE_ITEMS.SCHEDULE_ITEM_ID to CHV_PURGE_SCHEDULE_LIST, supporting purge processing. Beyond this, the table is joined to its parent schedule header (via SCHEDULE_ID), to purchase order headers and lines (via PO_HEADER_ID and PO_LINE_ID), and to inventory master items and organizations through ITEM_ID and ORGANIZATION_ID. Supplier Scheduling integration APIs and concurrent programs that generate, rebuild, confirm, or purge schedules read from and write to this table, making it a focal point for outbound supplier communication and inbound receipt reconciliation.