Search Results autocharge_flag
Overview
APPS.ENG_REVISED_OPERATIONS_V is a reporting and integration view in Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 that exposes engineering revised operations — that is, the operation sequences belonging to engineering change order (ECO) revisions of items before those revisions are released into production routing. The view consolidates data from the engineering module (ENG_REVISED_ITEMS, ENG_REVISED_OPERATIONS) with reference data sourced from the Bills of Material module (BOM_STANDARD_OPERATIONS, BOM_DEPARTMENTS, BOM_OPERATIONAL_ROUTINGS). Its primary role is to present a denormalized, human-readable projection of revised operations, resolving foreign keys such as department, standard operation, and routing into their business-meaningful codes while still exposing the underlying surrogate identifiers.
The view constitutes the engineering-side counterpart of operational routing queries, and is frequently used by reports, concurrent programs, and integrations that must inspect routing structures attached to pending revisions rather than to released routings.
Underlying Base Objects
The view is defined over the following documented base objects, referenced through public synonyms owned by APPS:
- ENG_REVISED_OPERATIONS (aliased A) — the driving table supplying operation sequence records, effectivity and disable dates, flags, attributes, and the WHO audit columns.
- ENG_REVISED_ITEMS (aliased ERI) — joined on REVISED_ITEM_SEQUENCE_ID to tie each operation back to its revised item.
- BOM_OPERATIONAL_ROUTINGS (aliased BOR) — joined on ROUTING_SEQUENCE_ID to resolve the parent routing header.
- BOM_STANDARD_OPERATIONS (aliased BSO) — joined to derive STANDARD_OPERATION_CODE.
- BOM_DEPARTMENTS (aliased BD) — joined to derive DEPARTMENT_CODE and LOCATION_ID.
- BOM_OPERATION_SEQUENCES — documented as a referenced object supporting the routing/operation model shared with the engineering tables.
A critical filter in the view definition is A.IMPLEMENTATION_DATE IS NOT NULL, so only operations that have been implemented (that is, revisions with a recorded implementation date) are returned.
Key Columns
The view projects the full column set of ENG_REVISED_OPERATIONS plus several derived and resolved values:
- ROW_ID — the ROWID of the ENG_REVISED_OPERATIONS row, suitable for row-level addressing.
- OPERATION_SEQUENCE_ID, ROUTING_SEQUENCE_ID, REVISED_ITEM_SEQUENCE_ID — primary and foreign keys linking the operation to its routing and revised item.
- OPERATION_SEQ_NUM — the sequence number of the operation within the routing.
- STANDARD_OPERATION_CODE / OPERATION_CODE and STANDARD_OPERATION_ID — the resolved standard operation reference.
- DEPARTMENT_CODE, DEPARTMENT_ID, LOCATION_ID — resolved department information.
- COUNT_POINT_FLAG — derived as
decode(COUNT_POINT_TYPE, 1, 1, 2), indicating whether the operation is a count point. - AUTOCHARGE_FLAG — derived as
decode(COUNT_POINT_TYPE, 3, 2, 1). This is the column most closely associated with the search term "autocharge_flag": it indicates whether the operation is automatically charged at the count point, computed from the stored COUNT_POINT_TYPE value. - BACKFLUSH_FLAG, OPTION_DEPENDENT_FLAG, OPERATION_TYPE, REFERENCE_FLAG, ECO_FOR_PRODUCTION — behavioral flags, several wrapped in NVL to supply defaults.
- EFFECTIVITY_DATE, DISABLE_DATE, IMPLEMENTATION_DATE, CANCELLATION_DATE — lifecycle dates governing when the operation is valid.
- YIELD, CUMULATIVE_YIELD, REVERSE_CUMULATIVE_YIELD and the LABOR/MACHINE/TOTAL time columns (both CALC and USER variants) — planning and costing attributes.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 — the DFF (descriptive flexfield) columns.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — concurrent program audit context.
Common Use Cases and Queries
Typical scenarios include engineering change reports, revision comparison extracts, routing validation prior to release, and interfaces that must move revised operations into production routings. Because AUTOCHARGE_FLAG is a derived decode rather than a stored column, queries filtering on autocharge behavior must target this view rather than the base table.
A representative query listing revised operations with their autocharge status:
SELECT operation_sequence_id, operation_seq_num, standard_operation_code, department_code, autocharge_flag, count_point_flag FROM apps.eng_revised_operations_v WHERE autocharge_flag = 2;
Joining the view back to ENG_REVISED_ITEMS for a specific revision, or to BOM_OPERATIONAL_ROUTINGS for routing context, is also common. Because the view enforces the IMPLEMENTATION_DATE IS NOT NULL predicate, it cannot be used to inspect unimplemented revisions; callers requiring those rows must query ENG_REVISED_OPERATIONS directly.
-
VIEW: APPS.ENG_REVISED_OPERATIONS_V
12.2.2
-
VIEW: APPS.PJM_PROJECT_WIP_OP_V
12.2.2
-
View: WIP_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OPERATIONS_V, object_name:WIP_OPERATIONS_V, status:VALID, product: WIP - Work in Process , description: Foreign-key data for WIP_OPERATIONS , implementation_dba_data: APPS.WIP_OPERATIONS_V ,
-
VIEW: APPS.PJM_PROJECT_WIP_OP_V
12.1.1
-
View: PJM_PROJECT_WIP_OP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_WIP_OP_V, object_name:PJM_PROJECT_WIP_OP_V, status:VALID, product: PJM - Project Manufacturing , description: WIP job operation information for the Web Inquiry. , implementation_dba_data: APPS.PJM_PROJECT_WIP_OP_V ,
-
View: PJM_PROJECT_WIP_OP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_WIP_OP_V, object_name:PJM_PROJECT_WIP_OP_V, status:VALID, product: PJM - Project Manufacturing , description: WIP job operation information for the Web Inquiry. , implementation_dba_data: APPS.PJM_PROJECT_WIP_OP_V ,
-
View: BOM_STANDARD_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_STANDARD_OPERATIONS_V, object_name:BOM_STANDARD_OPERATIONS_V, status:VALID, product: BOM - Bills of Material , description: Standard operations , implementation_dba_data: APPS.BOM_STANDARD_OPERATIONS_V ,
-
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: APPS.ENG_REVISED_OPERATIONS_V
12.1.1
-
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: BOM_STANDARD_OPERATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_STANDARD_OPERATIONS_V, object_name:BOM_STANDARD_OPERATIONS_V, status:VALID, product: BOM - Bills of Material , description: Standard operations , implementation_dba_data: APPS.BOM_STANDARD_OPERATIONS_V ,
-
View: WIP_OPERATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OPERATIONS_V, object_name:WIP_OPERATIONS_V, status:VALID, product: WIP - Work in Process , description: Foreign-key data for WIP_OPERATIONS , implementation_dba_data: APPS.WIP_OPERATIONS_V ,
-
VIEW: APPS.BOM_OPERATION_SEQUENCES_V
12.2.2
-
VIEW: APPS.BOM_STANDARD_OPERATIONS_V
12.2.2
-
VIEW: APPS.BOM_STANDARD_OPERATIONS_V
12.1.1
-
VIEW: APPS.WIP_OPERATIONS_V
12.2.2
-
VIEW: APPS.WIP_OPERATIONS_V
12.1.1
-
VIEW: APPS.PJM_PROJECT_WIP_OP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_WIP_OP_V, object_name:PJM_PROJECT_WIP_OP_V, status:VALID,
-
View: BOM_OPERATION_SEQUENCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OPERATION_SEQUENCES_V, object_name:BOM_OPERATION_SEQUENCES_V, status:VALID, product: BOM - Bills of Material , description: Operations , implementation_dba_data: APPS.BOM_OPERATION_SEQUENCES_V ,
-
View: BOM_OPERATION_SEQUENCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OPERATION_SEQUENCES_V, object_name:BOM_OPERATION_SEQUENCES_V, status:VALID, product: BOM - Bills of Material , description: Operations , implementation_dba_data: APPS.BOM_OPERATION_SEQUENCES_V ,
-
VIEW: APPS.PJM_PROJECT_WIP_OP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_WIP_OP_V, object_name:PJM_PROJECT_WIP_OP_V, status:VALID,
-
VIEW: APPS.BOM_OPERATION_SEQUENCES_V
12.1.1
-
VIEW: APPS.BOM_STANDARD_OPERATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_STANDARD_OPERATIONS_V, object_name:BOM_STANDARD_OPERATIONS_V, status:VALID,
-
VIEW: APPS.BOM_STANDARD_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_STANDARD_OPERATIONS_V, object_name:BOM_STANDARD_OPERATIONS_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.WIP_OPERATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OPERATIONS_V, object_name:WIP_OPERATIONS_V, status:VALID,
-
VIEW: APPS.WIP_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OPERATIONS_V, object_name:WIP_OPERATIONS_V, status:VALID,
-
VIEW: APPS.WIP_OPERATIONS_INQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OPERATIONS_INQ_V, object_name:WIP_OPERATIONS_INQ_V, status:VALID,
-
View: WIP_OPERATIONS_INQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OPERATIONS_INQ_V, object_name:WIP_OPERATIONS_INQ_V, status:VALID, product: WIP - Work in Process , description: In-queue quantities for operations , implementation_dba_data: APPS.WIP_OPERATIONS_INQ_V ,
-
View: WIP_OPERATIONS_INQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OPERATIONS_INQ_V, object_name:WIP_OPERATIONS_INQ_V, status:VALID, product: WIP - Work in Process , description: In-queue quantities for operations , implementation_dba_data: APPS.WIP_OPERATIONS_INQ_V ,
-
VIEW: APPS.WIP_OPERATIONS_INQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OPERATIONS_INQ_V, object_name:WIP_OPERATIONS_INQ_V, status:VALID,
-
VIEW: APPS.BOM_OPERATION_SEQUENCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OPERATION_SEQUENCES_V, object_name:BOM_OPERATION_SEQUENCES_V, status:VALID,
-
VIEW: APPS.BOM_OPERATION_SEQUENCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OPERATION_SEQUENCES_V, object_name:BOM_OPERATION_SEQUENCES_V, status:VALID,
-
VIEW: APPS.WIP_OPERATIONS_INQ_V
12.2.2
-
VIEW: APPS.WIP_OPERATIONS_INQ_V
12.1.1
-
eTRM - PJM Tables and Views
12.1.1
description: Change History of Serial Number - Model/Unit Number Associations ,
-
eTRM - PJM Tables and Views
12.2.2
description: Change History of Serial Number - Model/Unit Number Associations ,
-
eTRM - WIP Tables and Views
12.2.2
-
eTRM - WIP Tables and Views
12.1.1
-
eTRM - ENG Tables and Views
12.2.2
description: Change type organization properties ,
-
eTRM - ENG Tables and Views
12.1.1
description: Change type organization properties ,
-
eTRM - BOM Tables and Views
12.1.1
description: Table to map wip transactions to their corresponding event types. ,
-
eTRM - BOM Tables and Views
12.2.2
description: Table to map wip transactions to their corresponding event types. ,