Results for “eng_revised_items_v”

4 results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

The ENG_REVISED_ITEMS_V view (owned by the APPS schema, status VALID) belongs to the Oracle Engineering (ENG) module. Its documented purpose is to expose pending and implemented revised items — that is, the engineering change order (ECO) revisions recorded against items as they move through the engineering change lifecycle. In Oracle EBS 12.1.1 and 12.2.2, this view is the reporting and integration surface over the underlying ENG_REVISED_ITEMS table, denormalizing the revision header with descriptive item attributes, bill of material and routing context, workflow/WIP associations, and status lookups.

Where the base ENG_REVISED_ITEMS table stores only identifiers and codes, this view resolves those keys into meaningful values: item descriptions, item type, revised item status, disposition meaning, and work order names. It also derives computed flags such as AUTO_IMPLEMENTED_FLAG from the presence or absence of an auto-implement date. This makes the view suitable for engineering change reports, ECO dashboards, revision status extracts, and integration payloads that must communicate human-readable revision state rather than raw codes.

Underlying Base Objects

The view is built over the following documented base objects:

The joins are largely outer joins keyed on organization and inventory item, allowing revisions to be reported even where no bill, routing, or work order is associated.

Key Columns

Common Use Cases and Queries

Typical scenarios include listing pending revisions awaiting implementation, reporting implemented revisions by change notice, and extracting ECO details for downstream systems. A representative query for open (pending) revised items in an organization follows:

  • SELECT change_notice, revised_item_id, revised_item_description, new_item_revision, revised_item_status, scheduled_date FROM eng_revised_items_v WHERE organization_id = :org_id AND revised_item_status = 'Pending' ORDER BY scheduled_date;
  • SELECT change_notice, revised_item_id, new_item_revision, implementation_date, from_work_order, to_work_order FROM eng_revised_items_v WHERE change_notice = :eco AND implementation_date IS NOT NULL;
  • Filtering on AUTO_IMPLEMENTED_FLAG = 1 isolates revisions implemented through automatic scheduling; combining DISPOSITION and USE_UP columns supports effectivity and use-up analysis.

Because the view resolves codes to meanings, it is well suited to concurrent-program extracts and BI Publisher reports, avoiding additional lookup joins in custom SQL.