Search Results move_order_type_name
Overview
The APPS.MTL_TXN_REQUEST_HEADERS_V view presents the header-level information of move orders (transaction requests) within Oracle E-Business Suite inventory management. It is a denormalized reporting view that joins the base move order header table to lookup and transaction type tables, exposing human-readable meanings alongside stored code values. This view is the principal read interface for retrieving move order headers together with their translated attributes, and it is widely referenced by forms, concurrent programs, and custom reporting queries across Oracle Inventory and Oracle Warehouse Management.
The view addresses a specific reporting gap: the base table MTL_TXN_REQUEST_HEADERS stores MOVE_ORDER_TYPE and HEADER_STATUS as coded values that are not self-describing. The view resolves those codes through MFG_LOOKUPS so consumers receive the display meaning directly.
Underlying Base Objects
Per the ETRM 12.2.2 metadata, the view is owned by APPS and is defined over the following referenced objects:
- MTL_TXN_REQUEST_HEADERS (SYNONYM) — the primary source, aliased MTRH, supplying all header attributes.
- MFG_LOOKUPS (VIEW) — joined twice. Alias MFG1 resolves MOVE_ORDER_TYPE where LOOKUP_TYPE = 'MOVE_ORDER_TYPE'; alias MFG2 resolves HEADER_STATUS.
- MTL_TRANSACTION_TYPES (SYNONYM) — supplies TRANSACTION_TYPE_NAME and TRANSACTION_ACTION_ID.
The joins are lookup-based, meaning each header row is enriched with decoded meanings rather than aggregating detail lines. Note that the view exposes header-level fields only; move order line and detail information resides in MTL_TXN_REQUEST_LINES and related objects.
Key Columns
- HEADER_ID — primary key of the move order header; the join key to line tables.
- REQUEST_NUMBER — the user-visible move order number.
- TRANSACTION_TYPE_ID / TRANSACTION_TYPE_NAME — the transaction type and its description from MTL_TRANSACTION_TYPES.
- MOVE_ORDER_TYPE / MOVE_ORDER_TYPE_NAME — the coded move order type and its decoded meaning from MFG_LOOKUPS (LOOKUP_TYPE = 'MOVE_ORDER_TYPE'). This is the column family matching the search term "move_order_type_name".
- HEADER_STATUS / HEADER_STATUS_NAME — the coded status and its decoded meaning.
- ORGANIZATION_ID — the inventory organization owning the move order.
- FROM_SUBINVENTORY_CODE / TO_SUBINVENTORY_CODE — source and destination subinventories.
- TO_ACCOUNT_ID, SHIP_TO_LOCATION_ID — destination accounting and shipping location references.
- DATE_REQUIRED — the date the move order is required.
- GROUPING_RULE_ID, FREIGHT_CODE, SHIPMENT_METHOD, AUTO_RECEIPT_FLAG, REFERENCE_ID, REFERENCE_DETAIL_ID, ASSIGNMENT_ID — supplementary attributes supporting shipping, receipt, and project/task references.
- ATTRIBUTE1 through ATTRIBUTE15, ATTRIBUTE_CATEGORY, ATTRIBUTE_CATEGORY — the standard descriptive flexfield columns.
- Audit columns — LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, CREATED_BY, CREATION_DATE, and the request/program columns.
Common Use Cases and Queries
The view is typically used to build move order status reports, integration extracts, and self-service queries. A representative query filters by move order type name and status name:
- Listing move orders by type: SELECT request_number, move_order_type_name, header_status_name, organization_id FROM mtl_txn_request_headers_v WHERE move_order_type_name = 'Pick Wave';
- Pending move orders by organization: SELECT request_number, date_required, from_subinventory_code, to_subinventory_code FROM mtl_txn_request_headers_v WHERE organization_id = :org_id AND header_status_name IN ('Pending','In-Process');
- Integration extract: Selecting HEADER_ID, TRANSACTION_TYPE_NAME, MOVE_ORDER_TYPE_NAME, and the flexfield attributes for downstream system synchronization.
Because lookups are resolved inline, the view is preferable to reading the base table directly whenever human-readable output is required. Performance is generally acceptable for header-scoped queries; joining to MTL_TXN_REQUEST_LINES should be done on HEADER_ID.
-
VIEW: APPS.MTL_TXN_REQUEST_HEADERS_V
12.2.2
-
View: MTL_TXN_REQUEST_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_REQUEST_HEADERS_V, object_name:MTL_TXN_REQUEST_HEADERS_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_TXN_REQUEST_HEADERS_V ,
-
VIEW: APPS.MTL_TXN_REQUEST_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_REQUEST_HEADERS_V, object_name:MTL_TXN_REQUEST_HEADERS_V, status:VALID,
-
VIEW: APPS.MTL_TXN_BACKORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_BACKORDERS_V, object_name:MTL_TXN_BACKORDERS_V, status:VALID,
-
VIEW: APPS.MTL_TXN_BACKORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_BACKORDERS_V, object_name:MTL_TXN_BACKORDERS_V, status:VALID,
-
View: MTL_TXN_REQUEST_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_REQUEST_HEADERS_V, object_name:MTL_TXN_REQUEST_HEADERS_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_TXN_REQUEST_HEADERS_V ,
-
VIEW: APPS.MTL_TXN_REQUEST_HEADERS_V
12.1.1
-
VIEW: APPS.MTL_TXN_REQUEST_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_REQUEST_HEADERS_V, object_name:MTL_TXN_REQUEST_HEADERS_V, status:VALID,
-
View: IC_TXN_REQUEST_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_TXN_REQUEST_LINES_V, object_name:IC_TXN_REQUEST_LINES_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is used in the OPM Transact Process Move Orders form (ICTOTRX.fmb) to get the Move Order Lines data based on the entered criteria. , implementation_dba_data: APPS.IC_TXN_REQUEST_LINES_V ,
-
View: WMS_TXN_REQUEST_LINES_TRACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_TXN_REQUEST_LINES_TRACE_V, object_name:WMS_TXN_REQUEST_LINES_TRACE_V, status:VALID, product: WMS - Warehouse Management , description: WMS TXN Request Lines Trace View , implementation_dba_data: APPS.WMS_TXN_REQUEST_LINES_TRACE_V ,
-
View: MTL_TXN_REQUEST_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_REQUEST_LINES_V, object_name:MTL_TXN_REQUEST_LINES_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_TXN_REQUEST_LINES_V ,
-
VIEW: APPS.IC_TXN_REQUEST_LINES_V
12.2.2
-
View: WMS_TXN_REQUEST_LINES_TRACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_TXN_REQUEST_LINES_TRACE_V, object_name:WMS_TXN_REQUEST_LINES_TRACE_V, status:VALID, product: WMS - Warehouse Management , description: WMS TXN Request Lines Trace View , implementation_dba_data: APPS.WMS_TXN_REQUEST_LINES_TRACE_V ,
-
VIEW: APPS.IC_TXN_REQUEST_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_TXN_REQUEST_LINES_V, object_name:IC_TXN_REQUEST_LINES_V, status:VALID,
-
VIEW: APPS.IC_TXN_REQUEST_LINES_V
12.1.1
-
View: IC_TXN_REQUEST_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_TXN_REQUEST_LINES_V, object_name:IC_TXN_REQUEST_LINES_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is used in the OPM Transact Process Move Orders form (ICTOTRX.fmb) to get the Move Order Lines data based on the entered criteria. , implementation_dba_data: APPS.IC_TXN_REQUEST_LINES_V ,
-
VIEW: APPS.WMS_TXN_REQUEST_LINES_TRACE_V
12.2.2
-
VIEW: APPS.WMS_TXN_REQUEST_LINES_TRACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_TXN_REQUEST_LINES_TRACE_V, object_name:WMS_TXN_REQUEST_LINES_TRACE_V, status:VALID,
-
View: MTL_TXN_REQUEST_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_REQUEST_LINES_V, object_name:MTL_TXN_REQUEST_LINES_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_TXN_REQUEST_LINES_V ,
-
View: MTL_TXN_BACKORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_BACKORDERS_V, object_name:MTL_TXN_BACKORDERS_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_TXN_BACKORDERS_V ,
-
VIEW: APPS.IC_TXN_REQUEST_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_TXN_REQUEST_LINES_V, object_name:IC_TXN_REQUEST_LINES_V, status:VALID,
-
View: MTL_TXN_BACKORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_BACKORDERS_V, object_name:MTL_TXN_BACKORDERS_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_TXN_BACKORDERS_V ,
-
VIEW: APPS.MTL_TXN_REQUEST_LINES_V
12.2.2
-
VIEW: APPS.WMS_TXN_REQUEST_LINES_TRACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_TXN_REQUEST_LINES_TRACE_V, object_name:WMS_TXN_REQUEST_LINES_TRACE_V, status:VALID,
-
VIEW: APPS.WMS_TXN_REQUEST_LINES_TRACE_V
12.1.1
-
VIEW: APPS.MTL_TXN_REQUEST_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_REQUEST_LINES_V, object_name:MTL_TXN_REQUEST_LINES_V, status:VALID,
-
VIEW: APPS.MTL_TXN_REQUEST_LINES_V
12.1.1
-
VIEW: APPS.MTL_TXN_REQUEST_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TXN_REQUEST_LINES_V, object_name:MTL_TXN_REQUEST_LINES_V, status:VALID,
-
View: CSP_MO_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_MO_LINES_V, object_name:CSP_MO_LINES_V, status:VALID, product: CSP - Spares Management , description: Move order lines including extra information of Spares Management , implementation_dba_data: APPS.CSP_MO_LINES_V ,
-
View: CSP_MO_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_MO_LINES_V, object_name:CSP_MO_LINES_V, status:VALID, product: CSP - Spares Management , description: Move order lines including extra information of Spares Management , implementation_dba_data: APPS.CSP_MO_LINES_V ,
-
VIEW: APPS.CSP_MO_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_MO_LINES_V, object_name:CSP_MO_LINES_V, status:VALID,
-
VIEW: APPS.CSP_MO_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSP.CSP_MO_LINES_V, object_name:CSP_MO_LINES_V, status:VALID,
-
eTRM - CSP Tables and Views
12.2.2
description: Summarized usage history information ,
-
eTRM - CSP Tables and Views
12.1.1
description: Summarized usage history information ,
-
eTRM - GMI Tables and Views
12.1.1
description: Table used to relate Item ID with Roles. If the Item ID is NULL, then Roles will be associated with the warehouse Item ID. This table will be used by the Lot Expiry/Retest Workflow. ,
-
eTRM - GMI Tables and Views
12.2.2
description: Table used to relate Item ID with Roles. If the Item ID is NULL, then Roles will be associated with the warehouse Item ID. This table will be used by the Lot Expiry/Retest Workflow. ,
-
eTRM - WMS Tables and Views
12.1.1
-
eTRM - WMS Tables and Views
12.2.2
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2