Search Results engbv_engineering_chng_orders




Overview

The APPS.ENGBV_ENGINEERING_CHNG_ORDERS view is a Business View (BV) in the Oracle E-Business Suite Engineering (ENG) module. It presents a denormalized, read-only representation of Engineering Change Orders (ECOs) by joining engineering change records to their owning inventory organization and to the human resources organization definition. The view is retained across both Oracle EBS 12.1.1 and 12.2.2 and is catalogued as VALID in the ETRM metadata for release 12.2.2.

Its principal role is to expose engineering change order data in a reporting-friendly and integration-friendly format. The view resolves internal surrogate identifiers and lookup codes into human-readable names and meanings — for example, organization names, organization codes, and translated values for approval status and change order status — so that downstream reports, extracts, and interface programs do not need to reconstruct these joins or resolve lookups themselves. The view is defined WITH READ ONLY and includes a security predicate on the organization identifier, meaning it is intended strictly for query access and is subject to organization-level access control for the querying responsibility.

Underlying Base Objects

The view is defined over three documented base objects, each referenced through a synonym in the APPS schema:

The join condition requires that EN.ORGANIZATION_ID equal both AL.ORGANIZATION_ID and PA.ORGANIZATION_ID, so an ECO is returned only where a matching inventory organization and HR organization unit exist. The security predicate '_SEC:EN.ORGANIZATION_ID' IS NOT NULL enforces organization-level access filtering at runtime.

Key Columns

The view exposes the following significant columns:

Common Use Cases and Queries

Typical uses include ECO registries, change-order aging reports, cost-estimate summaries, and data extracts feeding external PLM or quality systems. The view is also convenient for ad-hoc investigation of a specific change number or a date window.

Retrieving recent ECOs with their creation date for a given organization:

  • SELECT eco_name, organization_code, eco_creation_date, implementation_date FROM apps.engbv_engineering_chng_orders WHERE organization_id = :org_id AND eco_creation_date >= :from_date ORDER BY eco_creation_date DESC;

Listing open change orders by status and estimated cost:

  • SELECT eco_name, description, "_LA:STATUS_TYPE" status, eng_implementation_costs FROM apps.engbv_engineering_chng_orders WHERE eco_name = :eco_name;

Because the view is read-only and includes the organization security predicate, no DML is possible through it, and results are automatically restricted to organizations accessible to the querying responsibility.