Search Results update_wip
Overview
ENG_WEB_SCHEDULE_V is an APPS-owned reporting view in the Oracle E-Business Suite Engineering (ENG) module, documented under ETRM for releases 12.1.1 and 12.2.2 with a status of VALID. Its documented description is "Revised items," and in practice it exposes the schedule of revised items awaiting or undergoing engineering change implementation. The view consolidates Engineering Change Order (ECO) header data, revised item lines, item master attributes, bill of material references, lookup meanings, and organizational context into a single flattened result set.
The view is designed primarily for web-facing inquiry and reporting against revised item schedules — that is, which items within which organizations are targeted for revision, under what ECO, with what scheduled and actual implementation dates. Because it joins lkpup-driven status and approval columns through MFG_LOOKUPS, it delivers business-readable values rather than raw lookup codes, which suits concurrent-program extracts, Oracle Reports, and custom OAF or JSP inquiry pages.
Underlying Base Objects
The view is defined over a mixture of ENG synonyms, MTL and BOM views, HR views, and lookup views. Documented referenced objects include:
- ENG_ENGINEERING_CHANGES, ENG_REVISED_ITEMS, ENG_CHANGE_ORDER_TYPES, ENG_CHANGE_REASONS — the core ECO and revised item entities (synonyms resolving to the ENG base tables).
- MTL_ITEM_FLEXFIELDS and MTL_PARAMETERS — item master detail and organization parameters supplying item number, padded item number, description, and organization code.
- BOM_BILL_OF_MATERIALS — outer-joined for the alternate BOM designator associated with the revised item's bill sequence.
- MFG_LOOKUPS — referenced multiple times to decode ECG_ECN_STATUS, ENG_ECN_APPROVAL_STATUS, and related MRP/WIP lookup types.
- HR_ORGANIZATION_UNITS, PER_PEOPLE_F, HR_ORGANIZATION_UNITS/HR_GENERAL/HR_PERSON_NAME/HR_SECURITY/FND_GLOBAL — supplying requestor name, department name, and the security and date-effective person context.
The joins are driven by the composite key CHANGE_NOTICE plus ORGANIZATION_ID between the ECO and its revised items, with the revised item then resolved to MTL_ITEM_FLEXFIELDS on ORGANIZATION_ID and INVENTORY_ITEM_ID. Several joins are outer joins, including the BOM designator, approval status lookup, requestor person, and responsible organization, so revised items remain visible even where those attributes are not yet populated.
Key Columns
- REVISED_ITEM_SEQUENCE_ID — primary identifying sequence for the revised item line.
- CHANGE_NOTICE — the ECO number tying the revised item to its engineering change.
- REVISED_ITEM, PADDED_REVISED_ITEM, REVISED_ITEM_DESCRIPTION — item number and description of the item under revision; this is the column most commonly retrieved when users search on revised item description text.
- ORGANIZATION_CODE — the inventory organization in which the revision applies.
- ECO_STATUS, REVISED_ITEM_STATUS, APPROVAL_STATUS, MRP_ACTIVE, UPDATE_WIP — decoded lookup meanings describing workflow and planning state.
- SCHEDULED_DATE, IMPLEMENTATION_DATE, INITIATION_DATE, APPROVAL_DATE — the schedule and milestone dates central to the view's purpose.
- NEW_ITEM_REVISION — the revision to which the item moves upon implementation.
- REQUESTOR, DEPARTMENT — person and organization unit responsible for the change.
Common Use Cases and Queries
Typical uses include revised item schedule reports, ECO impact listings, and integration extracts feeding downstream planning or PLM systems. A basic query filtering by revised item description resembles:
SELECT change_notice, organization_code, revised_item, revised_item_description, new_item_revision, eco_status, scheduled_date, implementation_date FROM apps.eng_web_schedule_v WHERE revised_item_description LIKE 'CABLE%' ORDER BY scheduled_date;
To list open revised items by organization and status:
SELECT organization_code, revised_item, revised_item_status, approval_status, requestor FROM apps.eng_web_schedule_v WHERE revised_item_status = 'Open' AND organization_id = :org_id;
Because the view applies no responsibility-based row filtering in its text, access control is typically enforced by the calling form, report, or by joining to MTL_PARAMETERS / FND_GLOBAL-resolved org security. Queries should therefore be constrained by organization to avoid cross-org data exposure.
-
View: ENG_WEB_SCHEDULE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_WEB_SCHEDULE_V, object_name:ENG_WEB_SCHEDULE_V, status:VALID, product: ENG - Engineering , description: Revised items , implementation_dba_data: APPS.ENG_WEB_SCHEDULE_V ,
-
View: ENG_WEB_SCHEDULE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_WEB_SCHEDULE_V, object_name:ENG_WEB_SCHEDULE_V, status:VALID, product: ENG - Engineering , description: Revised items , implementation_dba_data: APPS.ENG_WEB_SCHEDULE_V ,
-
View: ENG_REVISED_ITEMS_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_ITEMS_INTERFACE_V, object_name:ENG_REVISED_ITEMS_INTERFACE_V, status:VALID, product: ENG - Engineering , description: Mass change details , implementation_dba_data: APPS.ENG_REVISED_ITEMS_INTERFACE_V ,
-
View: ENG_REVISED_ITEMS_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_ITEMS_INTERFACE_V, object_name:ENG_REVISED_ITEMS_INTERFACE_V, status:VALID, product: ENG - Engineering , description: Mass change details , implementation_dba_data: APPS.ENG_REVISED_ITEMS_INTERFACE_V ,
-
View: ENG_REVISED_ITEMS_API_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_ITEMS_API_V, object_name:ENG_REVISED_ITEMS_API_V, status:VALID, product: ENG - Engineering , description: Pending and implemented revised items , implementation_dba_data: APPS.ENG_REVISED_ITEMS_API_V ,
-
View: ENG_REVISED_ITEMS_API_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_ITEMS_API_V, object_name:ENG_REVISED_ITEMS_API_V, status:VALID, product: ENG - Engineering , description: Pending and implemented revised items , implementation_dba_data: APPS.ENG_REVISED_ITEMS_API_V ,
-
View: ENG_REVISED_ITEMS_SCHEDULE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_ITEMS_SCHEDULE_V, object_name:ENG_REVISED_ITEMS_SCHEDULE_V, status:VALID, product: ENG - Engineering , description: Engineering change order schedules , implementation_dba_data: APPS.ENG_REVISED_ITEMS_SCHEDULE_V ,
-
View: ENG_REVISED_ITEMS_SCHEDULE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_ITEMS_SCHEDULE_V, object_name:ENG_REVISED_ITEMS_SCHEDULE_V, status:VALID, product: ENG - Engineering , description: Engineering change order schedules , implementation_dba_data: APPS.ENG_REVISED_ITEMS_SCHEDULE_V ,
-
View: ENG_REVISED_ITEMS_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_ITEMS_ERV, object_name:ENG_REVISED_ITEMS_ERV, status:VALID, product: ENG - Engineering , description: Pending and implemented revised items , implementation_dba_data: APPS.ENG_REVISED_ITEMS_ERV ,
-
View: ENG_REVISED_ITEMS_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_ITEMS_ERV, object_name:ENG_REVISED_ITEMS_ERV, status:VALID, product: ENG - Engineering , description: Pending and implemented revised items , implementation_dba_data: APPS.ENG_REVISED_ITEMS_ERV ,
-
View: ENG_REVISED_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_ITEMS_V, object_name:ENG_REVISED_ITEMS_V, status:VALID, product: ENG - Engineering , description: Pending and implemented revised items , implementation_dba_data: APPS.ENG_REVISED_ITEMS_V ,
-
View: ENG_REVISED_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_ITEMS_V, object_name:ENG_REVISED_ITEMS_V, status:VALID, product: ENG - Engineering , description: Pending and implemented revised items , implementation_dba_data: APPS.ENG_REVISED_ITEMS_V ,