Search Results last_edi_date




Overview

The APPS.POS_CHV_SCHEDULE_HEADERS_V view is a Purchasing (PO) module reporting and integration object that presents supplier release scheduling header information in a denormalized, join-ready form. Its name reflects its lineage: it belongs to the Supplier Scheduling component of Oracle Purchasing (historically known as the "CHV" application, now subsumed within PO). The view consolidates scheduling header records from the base table CHV_SCHEDULE_HEADERS together with vendor, vendor site, organization, bucket pattern, and employee attributes so that consumers can query fully described scheduling records without performing the multi-table joins themselves.

In Oracle EBS 12.1.1 and 12.2.2 the view remains a VALID object owned by APPS. Because it resolves foreign keys into descriptive columns such as VENDOR_NAME, VENDOR_SITE_CODE, and ORGANIZATION_CODE, it is well suited for operational reports, concurrent program output, EDI/release-advice integrations, and ad hoc data extraction related to supplier schedules, releases, and confirmations.

Underlying Base Objects

The view text joins the scheduling header table to several related objects using the ANSI/legacy join syntax standard in EBS views. The documented referenced base objects are:

The joins are predominantly inner joins on vendor, vendor site, and bucket pattern, with outer joins preserved for organization and person so that schedules without those references still appear.

Key Columns

Common Use Cases and Queries

A frequent requirement is to identify schedules confirmed within a date range, which maps directly to the CONFIRM_DATE column:

  • Confirmation audit: SELECT SCHEDULE_ID, SCHEDULE_NUM, VENDOR_NAME, VENDOR_SITE_CODE, CONFIRM_DATE FROM APPS.POS_CHV_SCHEDULE_HEADERS_V WHERE CONFIRM_DATE >= :p_from_date AND CONFIRM_DATE < :p_to_date ORDER BY CONFIRM_DATE DESC;
  • Release transmission monitoring: query LAST_EDI_DATE, EDI_COUNT, and SCHEDULE_STATUS to find schedules awaiting or failing transmission.
  • Supplier-facing reporting: join to release lines by SCHEDULE_ID to produce a denormalized release report including vendor and site descriptions.
  • Ownership and org analysis: aggregate by FULL_NAME, ORGANIZATION_CODE, or BUCKET_PATTERN_NAME for workload and planning views.

Because EBS enforces multi-org and HR security through the referenced packages, reports should be created within an appropriately configured responsibility so that organization and person security filters apply. The view is read-only and inherits data directly from its base objects, so results reflect the live scheduling tables at query time.