Search Results cancellation_date
Overview
The APPS.ENG_ENGINEERING_CHANGES_VAL_V view is a validation-oriented reporting object within the Oracle E-Business Suite Engineering (ENG) module. Its documented purpose is to expose non-cancelled engineering change orders. In practice, the view functions as a filtered, denormalized projection of the master engineering change order table, returning only those engineering change (ECO) records whose cancellation date has not yet effectively removed them from the active working set.
The critical filter embedded in the view definition is WHERE TRUNC(NVL(CANCELLATION_DATE, SYSDATE + 1)) > TRUNC(SYSDATE). This predicate evaluates true for any engineering change order that either has no cancellation date at all (defaulted to a future date of SYSDATE + 1) or has a cancellation date in the future. Consequently, ECOs whose cancellation date is on or before the current system date are excluded from the result set. This view is therefore useful for reports, integrations, and validation logic that must operate exclusively against engineering change orders still considered active by the application.
Underlying Base Objects
The view is owned by the APPS schema and is defined over a single documented base object: ENG_ENGINEERING_CHANGES, accessed through a synonym. The view text aliases this table as EEC. No joins to secondary tables are present in the documented definition, so the view performs a one-to-one filtered projection of the base engineering change order records without aggregating or combining rows across tables.
Because the view is defined directly over the base table with only a row-level filter, the columns exposed mirror those of the underlying table. This means column semantics, data types, and value domains correspond exactly to the base engineering change order entity. The view name suffix _VAL_V is consistent with Oracle EBS conventions denoting a validation view, commonly referenced by descriptive flexfield and value-set validation logic.
Key Columns
The most relevant columns exposed by the view include:
- CHANGE_NOTICE — The engineering change order identifier or name.
- DESCRIPTION — Free-text description of the change.
- ORGANIZATION_ID — The owning inventory organization.
- STATUS_TYPE — The current workflow or lifecycle status of the ECO.
- INITIATION_DATE and IMPLEMENTATION_DATE — Milestone dates for the change lifecycle.
- CANCELLATION_DATE and CANCELLATION_COMMENTS — The cancellation timestamp and accompanying remarks; the cancellation date drives the view’s filtering predicate.
- PRIORITY_CODE and REASON_CODE — Classifications for the change.
- ESTIMATED_ENG_COST and ESTIMATED_MFG_COST — Estimated engineering and manufacturing costs.
- REQUESTOR_ID — The user who requested the change.
- APPROVAL_STATUS_TYPE, APPROVAL_DATE, APPROVAL_LIST_ID, and APPROVAL_REQUEST_DATE — Approval workflow context.
- CHANGE_ORDER_TYPE_ID and RESPONSIBLE_ORGANIZATION_ID — Type and responsible organization references.
- ATTRIBUTE_CATEGORY through ATTRIBUTE15 and DDF_CONTEXT — Descriptive flexfield columns.
- Standard WHO and concurrent columns —
CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE,REQUEST_ID,PROGRAM_ID, and related auditing fields.
Common Use Cases and Queries
The view is typically used to retrieve active engineering change orders for reporting, validation lists, and integration payloads. A representative query filtering by organization and status follows:
SELECT change_notice, description, status_type, implementation_date FROM eng_engineering_changes_val_v WHERE organization_id = :org_id AND status_type = :status ORDER BY change_notice;
Because the view already excludes records with a past cancellation date, there is no need to re-apply the cancellation predicate at the call site. A simple listing of all active change orders requires only:
SELECT change_notice, approval_status_type, approval_date FROM eng_engineering_changes_val_v;
Consumers should be aware that the filter depends on the database server date via SYSDATE, so results are time-sensitive. Any integration that caches or replicates results from this view must account for the fact that a change order may drop out of the result set once its cancellation date is reached. Queries driven by the CANCELLATION_DATE column itself will return only future or null cancellation dates, since past cancellation values are filtered out by the view definition.
-
View: ENG_ENGINEERING_CHANGES_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_ENGINEERING_CHANGES_VAL_V, object_name:ENG_ENGINEERING_CHANGES_VAL_V, status:VALID, product: ENG - Engineering , description: Non-cancelled engineering change orders , implementation_dba_data: APPS.ENG_ENGINEERING_CHANGES_VAL_V ,
-
View: ENG_ENGINEERING_CHANGES_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_ENGINEERING_CHANGES_VAL_V, object_name:ENG_ENGINEERING_CHANGES_VAL_V, status:VALID, product: ENG - Engineering , description: Non-cancelled engineering change orders , implementation_dba_data: APPS.ENG_ENGINEERING_CHANGES_VAL_V ,
-
View: ENGBV_ENGINEERING_CHNG_ORDERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENGBV_ENGINEERING_CHNG_ORDERS, object_name:ENGBV_ENGINEERING_CHNG_ORDERS, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENGBV_ENGINEERING_CHNG_ORDERS ,
-
View: ENGBV_ECO_REVISED_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENGBV_ECO_REVISED_ITEMS, object_name:ENGBV_ECO_REVISED_ITEMS, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENGBV_ECO_REVISED_ITEMS ,
-
View: ENGBV_ECO_REVISED_ITEMS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENGBV_ECO_REVISED_ITEMS, object_name:ENGBV_ECO_REVISED_ITEMS, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENGBV_ECO_REVISED_ITEMS ,
-
View: ENG_ENGINEERING_CHANGES_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_ENGINEERING_CHANGES_ALL_V, object_name:ENG_ENGINEERING_CHANGES_ALL_V, status:VALID, product: ENG - Engineering , description: All engineering change orders , implementation_dba_data: APPS.ENG_ENGINEERING_CHANGES_ALL_V ,
-
View: ENG_ENGINEERING_CHANGES_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_ENGINEERING_CHANGES_ALL_V, object_name:ENG_ENGINEERING_CHANGES_ALL_V, status:VALID, product: ENG - Engineering , description: All engineering change orders , implementation_dba_data: APPS.ENG_ENGINEERING_CHANGES_ALL_V ,
-
View: ENGBV_ENGINEERING_CHNG_ORDERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENGBV_ENGINEERING_CHNG_ORDERS, object_name:ENGBV_ENGINEERING_CHNG_ORDERS, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENGBV_ENGINEERING_CHNG_ORDERS ,
-
View: ENG_REVISED_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_OPERATIONS_V, object_name:ENG_REVISED_OPERATIONS_V, status:VALID, product: ENG - Engineering , description: Pending and implemented revised operations , implementation_dba_data: APPS.ENG_REVISED_OPERATIONS_V ,
-
View: ENG_REVISED_OPERATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_OPERATIONS_V, object_name:ENG_REVISED_OPERATIONS_V, status:VALID, product: ENG - Engineering , description: Pending and implemented revised operations , implementation_dba_data: APPS.ENG_REVISED_OPERATIONS_V ,
-
View: ENGFV_ECO_REVISED_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENGFV_ECO_REVISED_ITEMS, object_name:ENGFV_ECO_REVISED_ITEMS, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENGFV_ECO_REVISED_ITEMS ,
-
View: ENGFV_ECO_REVISED_ITEMS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENGFV_ECO_REVISED_ITEMS, object_name:ENGFV_ECO_REVISED_ITEMS, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENGFV_ECO_REVISED_ITEMS ,
-
View: ENG_REVISED_COMPONENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_COMPONENTS_V, object_name:ENG_REVISED_COMPONENTS_V, status:VALID, product: ENG - Engineering , description: Pending, implemented, and cancelled revised components , implementation_dba_data: APPS.ENG_REVISED_COMPONENTS_V ,
-
View: ENG_REVISED_COMPONENTS_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_COMPONENTS_ERV, object_name:ENG_REVISED_COMPONENTS_ERV, status:VALID, product: ENG - Engineering , description: Pending, implemented, and cancelled revised components , implementation_dba_data: APPS.ENG_REVISED_COMPONENTS_ERV ,
-
View: ENG_REVISED_COMPONENTS_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_COMPONENTS_ERV, object_name:ENG_REVISED_COMPONENTS_ERV, status:VALID, product: ENG - Engineering , description: Pending, implemented, and cancelled revised components , implementation_dba_data: APPS.ENG_REVISED_COMPONENTS_ERV ,
-
View: ENG_REVISED_COMPONENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_COMPONENTS_V, object_name:ENG_REVISED_COMPONENTS_V, status:VALID, product: ENG - Engineering , description: Pending, implemented, and cancelled revised components , implementation_dba_data: APPS.ENG_REVISED_COMPONENTS_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: ENGFV_ENGINEERING_CHNG_ORDERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENGFV_ENGINEERING_CHNG_ORDERS, object_name:ENGFV_ENGINEERING_CHNG_ORDERS, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENGFV_ENGINEERING_CHNG_ORDERS ,
-
View: ENG_ENG_CHANGES_API_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_ENG_CHANGES_API_V, object_name:ENG_ENG_CHANGES_API_V, status:VALID, product: ENG - Engineering , description: View used in ECO workflow , implementation_dba_data: APPS.ENG_ENG_CHANGES_API_V ,
-
View: ENG_ENG_CHANGES_API_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_ENG_CHANGES_API_V, object_name:ENG_ENG_CHANGES_API_V, status:VALID, product: ENG - Engineering , description: View used in ECO workflow , implementation_dba_data: APPS.ENG_ENG_CHANGES_API_V ,
-
View: ENGFV_ENGINEERING_CHNG_ORDERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENGFV_ENGINEERING_CHNG_ORDERS, object_name:ENGFV_ENGINEERING_CHNG_ORDERS, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENGFV_ENGINEERING_CHNG_ORDERS ,
-
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_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_COMPONENT_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_COMPONENT_VIEW, object_name:ENG_COMPONENT_VIEW, status:VALID, product: ENG - Engineering , description: This view joins BOM_INVENTORY_COMPONENTS and ENG_REVISED_COMPONENTS to display all revised components for a revised item , implementation_dba_data: APPS.ENG_COMPONENT_VIEW ,
-
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_COMPONENT_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_COMPONENT_VIEW, object_name:ENG_COMPONENT_VIEW, status:VALID, product: ENG - Engineering , description: This view joins BOM_INVENTORY_COMPONENTS and ENG_REVISED_COMPONENTS to display all revised components for a revised item , implementation_dba_data: APPS.ENG_COMPONENT_VIEW ,
-
View: ENG_ENGINEERING_CHANGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_ENGINEERING_CHANGES_V, object_name:ENG_ENGINEERING_CHANGES_V, status:VALID, product: ENG - Engineering , description: Engineering change orders , implementation_dba_data: APPS.ENG_ENGINEERING_CHANGES_V ,
-
View: ENG_ENGINEERING_CHANGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_ENGINEERING_CHANGES_V, object_name:ENG_ENGINEERING_CHANGES_V, status:VALID, product: ENG - Engineering , description: Engineering change orders , implementation_dba_data: APPS.ENG_ENGINEERING_CHANGES_V ,
-
View: ENG_CHANGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_CHANGES_V, object_name:ENG_CHANGES_V, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENG_CHANGES_V ,
-
View: ENG_CHANGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_CHANGES_V, object_name:ENG_CHANGES_V, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENG_CHANGES_V ,
-
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_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_ENGINEERING_CHANGES_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_ENGINEERING_CHANGES_ERV, object_name:ENG_ENGINEERING_CHANGES_ERV, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENG_ENGINEERING_CHANGES_ERV ,
-
View: ENG_ENGINEERING_CHANGES_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_ENGINEERING_CHANGES_ERV, object_name:ENG_ENGINEERING_CHANGES_ERV, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENG_ENGINEERING_CHANGES_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 ,