Search Results to_department
Overview
WIPFV_WIP_MOVE_TRANSACTIONS is an Oracle EBS Business Intelligence System (BIS) view owned by the APPS schema, with FND Design Data reference WIP.WIPFV_WIP_MOVE_TRANSACTIONS. It exposes the shop floor move transactions recorded against discrete jobs and repetitive schedules, capturing the movement of assemblies between operations and between intraoperation steps. Each row represents a move transaction and reports the transaction date, quantities moved in both transaction and primary UOMs, overcompletion quantities, source and destination operations, source and destination departments, and the associated manufacturing order, line, and organization context.
Because the view flattens and denormalizes information drawn from WIP move transactions and the surrounding master data, it is positioned primarily for reporting, operational enquiry, and downstream integration rather than for transactional maintenance of move records. The presence of descriptive attributes such as ORGANIZATION_NAME, MFG_ORDER_NAME, LINE_NAME, DEPARTMENT descriptions, UOM codes, and reason/QA plan names makes it suitable for read-only extract and analytical consumption.
Underlying Base Objects
The view is defined over the following documented base objects (all accessed via synonyms in APPS): WIP_MOVE_TRANSACTIONS, WIP_ENTITIES, WIP_LINES, BOM_DEPARTMENTS, MTL_PARAMETERS, MTL_SYSTEM_ITEMS, MTL_UNITS_OF_MEASURE, MTL_TRANSACTION_REASONS, ORG_ACCT_PERIODS, GL_CODE_COMBINATIONS, QA_PLANS, QA_RESULTS, and HR_ALL_ORGANIZATION_UNITS.
WIP_MOVE_TRANSACTIONS is the driving table, supplying the core transaction attributes, quantities, operation and intraoperation step references, and the foreign keys used throughout. WIP_ENTITIES and WIP_LINES resolve the job/repetitive schedule and production line context, while BOM_DEPARTMENTS (referenced through FM_DEPARTMENT_ID and TO_DEPARTMENT_ID) supplies the department descriptions that surface as FROM_DEPARTMENT and TO_DEPARTMENT. MTL_SYSTEM_ITEMS and MTL_UNITS_OF_MEASURE provide item and unit-of-measure descriptive detail; MTL_PARAMETERS supplies organization context; ORG_ACCT_PERIODS and GL_CODE_COMBINATIONS support period and scrap account information; MTL_TRANSACTION_REASONS, QA_PLANS, and QA_RESULTS provide reason and quality-plan detail; and HR_ALL_ORGANIZATION_UNITS supplies organizational descriptions.
Key Columns
- FROM_DEPARTMENT / TO_DEPARTMENT: Department code (VARCHAR2(10)) the assembly is moved from and to. Backed by FM_DEPARTMENT_ID and TO_DEPARTMENT_ID respectively. These are the columns most relevant to a "to_department" search.
- FROM_OPERATION / TO_OPERATION and FROM_OPERATION_SEQ_NUMBER / TO_OPERATION_SEQ_NUMBER: Source and destination operations and their sequence numbers.
- FROM_INTRAOPERATION_STEP / TO_INTRAOPERATION_STEP: Intraoperation step movement within an operation.
- TRANSACTION_QUANTITY / PRIMARY_QUANTITY: Quantity moved in the transaction UOM and in the primary UOM.
- OVERCOMPLETION_TRANSACTION_QTY / OVERCOMPLETION_PRIMARY_QTY: Overcompletion quantities for the move.
- TRANSACTION_DATE / TRANSACTION_ID / GROUP_ID: Transaction timing and identifiers.
- MFG_ORDER_NAME / LINE_NAME / ORGANIZATION_CODE / ORGANIZATION_NAME: Job, line, and organization context.
- _KF:ITEM_NUMBER / PRIMARY_ITEM_ID: Item identification.
- PERIOD_NAME / ACCT_PERIOD_ID: Accounting period context.
- TRANSACTION_UOM_CODE / PRIMARY_UOM_CODE: Units of measure used.
- REASON_ID / REASON, QA_PLAN_NAME, SCRAP_ACCOUNT_ID, _KF:ACCOUNT_NUM:SCRAP:_CO: Reason, quality-plan, and scrap account information.
Common Use Cases and Queries
Typical uses include shop floor movement analysis, departmental throughput reporting, overcompletion monitoring, and integration extracts for manufacturing dashboards. Filtering or grouping on TO_DEPARTMENT and FROM_DEPARTMENT supports material flow reporting between departments, while transaction date and period filters support point-in-time and period analysis.
Movements into a specific department:
SELECT transaction_date, mfg_order_name, organization_code,
from_department, to_department,
from_operation, to_operation, transaction_quantity,
transaction_uom_code
FROM apps.wipfv_wip_move_transactions
WHERE to_department = :to_department
AND transaction_date BETWEEN :start_date AND :end_date;
Department-to-department throughput summary:
SELECT from_department, to_department,
SUM(transaction_quantity) AS moved_qty
FROM apps.wipfv_wip_move_transactions
WHERE organization_code = :org
AND transaction_date >= :start_date
GROUP BY from_department, to_department;
Overcompletion analysis by job:
SELECT mfg_order_name, to_department,
SUM(overcompletion_transaction_qty) AS overcompletion_qty
FROM apps.wipfv_wip_move_transactions
WHERE overcompletion_transaction_qty > 0
GROUP BY mfg_order_name, to_department;
-
VIEW: APPS.WIPFV_WIP_MOVE_TRANSACTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIPFV_WIP_MOVE_TRANSACTIONS, object_name:WIPFV_WIP_MOVE_TRANSACTIONS, status:VALID,
-
VIEW: APPS.MSC_MATERIAL_FLOW_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSC_MATERIAL_FLOW_DETAILS_V, status:VALID,
-
VIEW: APPS.WIPFV_WIP_MOVE_TRANSACTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIPFV_WIP_MOVE_TRANSACTIONS, object_name:WIPFV_WIP_MOVE_TRANSACTIONS, status:VALID,
-
VIEW: APPS.MSC_MATERIAL_FLOW_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MSC_MATERIAL_FLOW_DETAILS_V, status:VALID,
-
VIEW: QA.QA_RESULTS_INTERFACE#
12.2.2
-
View: WIPFV_WIP_MOVE_TRANSACTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIPFV_WIP_MOVE_TRANSACTIONS, object_name:WIPFV_WIP_MOVE_TRANSACTIONS, status:VALID, product: WIP - Work in Process , implementation_dba_data: APPS.WIPFV_WIP_MOVE_TRANSACTIONS ,
-
View: WIPFV_WIP_MOVE_TRANSACTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIPFV_WIP_MOVE_TRANSACTIONS, object_name:WIPFV_WIP_MOVE_TRANSACTIONS, status:VALID, product: WIP - Work in Process , implementation_dba_data: APPS.WIPFV_WIP_MOVE_TRANSACTIONS ,
-
View: QA_RESULTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_RESULTS_V, object_name:QA_RESULTS_V, status:VALID, product: QA - Quality , description: Shows all quality results , implementation_dba_data: APPS.QA_RESULTS_V ,
-
View: QA_RESULTS_FULL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_RESULTS_FULL_V, object_name:QA_RESULTS_FULL_V, status:VALID, product: QA - Quality , description: Shows all quality results , implementation_dba_data: APPS.QA_RESULTS_FULL_V ,
-
View: QA_RESULTS_FULL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_RESULTS_FULL_V, object_name:QA_RESULTS_FULL_V, status:VALID, product: QA - Quality , description: Shows all quality results , implementation_dba_data: APPS.QA_RESULTS_FULL_V ,
-
View: QA_RESULTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_RESULTS_V, object_name:QA_RESULTS_V, status:VALID, product: QA - Quality , description: Shows all quality results , implementation_dba_data: APPS.QA_RESULTS_V ,
-
VIEW: APPS.QA_RESULTS_V
12.2.2
-
VIEW: QA.QA_RESULTS_INTERFACE#
12.2.2
owner:QA, object_type:VIEW, object_name:QA_RESULTS_INTERFACE#, status:VALID,
-
VIEW: APPS.QA_RESULTS_V
12.1.1
-
VIEW: APPS.QA_RESULTS_FULL_V
12.1.1
-
VIEW: APPS.QA_RESULTS_FULL_V
12.2.2
-
View: QA_RESULTS_QWB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_RESULTS_QWB_V, object_name:QA_RESULTS_QWB_V, status:VALID, product: QA - Quality , description: Shows all quality results , implementation_dba_data: APPS.QA_RESULTS_QWB_V ,
-
PACKAGE: APPS.INV_GENEALOGY_REPORT_GEN
12.1.1
-
PACKAGE: APPS.INV_GENEALOGY_REPORT_GEN
12.2.2
-
VIEW: APPS.QA_RESULTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_RESULTS_V, object_name:QA_RESULTS_V, status:VALID,
-
VIEW: APPS.QA_RESULTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_RESULTS_V, object_name:QA_RESULTS_V, status:VALID,
-
VIEW: APPS.QA_RESULTS_QWB_V
12.1.1
owner:APPS, object_type:VIEW, object_name:QA_RESULTS_QWB_V, status:VALID,
-
VIEW: APPS.QA_RESULTS_QWB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_RESULTS_QWB_V, object_name:QA_RESULTS_QWB_V, status:VALID,
-
VIEW: APPS.QA_RESULTS_FULL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_RESULTS_FULL_V, object_name:QA_RESULTS_FULL_V, status:VALID,
-
VIEW: APPS.QA_RESULTS_FULL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_RESULTS_FULL_V, object_name:QA_RESULTS_FULL_V, status:VALID,
-
PACKAGE: APPS.WIP_TRANSACTION_PUB
12.1.1
-
PACKAGE: APPS.WIP_TRANSACTION_PUB
12.2.2
-
TABLE: QA.QA_RESULTS_INTERFACE
12.2.2
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_RESULTS_INTERFACE, object_name:QA_RESULTS_INTERFACE, status:VALID,
-
TABLE: QA.QA_RESULTS_INTERFACE
12.1.1
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_RESULTS_INTERFACE, object_name:QA_RESULTS_INTERFACE, status:VALID,
-
PACKAGE: APPS.QA_SS_CONST
12.1.1
-
PACKAGE: APPS.QA_SS_CONST
12.2.2
-
PACKAGE BODY: APPS.INV_GENEALOGY_REPORT_GEN
12.1.1
-
PACKAGE BODY: APPS.INV_GENEALOGY_REPORT_GEN
12.2.2
-
APPS.WIP_VALIDATE dependencies on FND_API
12.1.1
-
APPS.WIP_VALIDATE dependencies on FND_API
12.2.2
-
PACKAGE BODY: APPS.WIP_VALIDATE
12.1.1
-
eTRM - QA Tables and Views
12.2.2
description: Define information on applicability of a collection plan for a Quality Collection transaction ,
-
PACKAGE BODY: APPS.WIP_VALIDATE
12.2.2
-
eTRM - QA Tables and Views
12.1.1
description: Define information on applicability of a collection plan for a Quality Collection transaction ,
-
PACKAGE BODY: APPS.QLTTRAWB
12.1.1
-
PACKAGE BODY: APPS.QLTTRAWB
12.2.2
-
eTRM - WIP Tables and Views
12.2.2
-
eTRM - WIP Tables and Views
12.1.1