Search Results ic_txn_request_headers
Overview
The IC_TXN_REQUEST_HEADERS table, owned by the GMI schema, is the header-level data object for Move Orders within the Oracle EBS Process Manufacturing Inventory module (GMI). A move order represents an internal inventory transfer request — moving material between subinventories, between organizations, or to a designated location — and IC_TXN_REQUEST_HEADERS acts as the controlling parent record that establishes the identity, type, source, and destination of each request. Each header row anchors a set of line-level detail records in IC_TXN_REQUEST_LINES, which carry the individual item and quantity instructions.
In Data Vault modeling terms, the mined foreign-key structure classifies this table as hub-leaning. This is a modeling suggestion: the two unique indexes on business keys (HEADER_ID and REQUEST_NUMBER/ORGANIZATION_ID) strongly indicate a natural business hub for move order headers, with descriptive attributes (dates, status, shipping attributes) suggesting satellite behavior around that hub. Physical layering depends on the warehouse design chosen.
Key Information Stored
The table carries 45 documented columns. The most operationally significant are:
- HEADER_ID — the surrogate primary key (backed by
IC_TXN_REQUEST_HEADERS_PK). - REQUEST_NUMBER and ORGANIZATION_ID — together forming the business-key unique index
IC_TXN_REQUEST_HEADERS_U1, meaning a move order number is unique within an inventory organization. - TRANSACTION_TYPE_ID and MOVE_ORDER_TYPE — define the nature of the movement (e.g., subinventory transfer, account transfer, requisition-based).
- FROM_SUBINVENTORY_CODE and TO_SUBINVENTORY_CODE — the source and destination subinventories for the transfer.
- TO_ACCOUNT_ID — the destination account where applicable.
- HEADER_STATUS and STATUS_DATE — the workflow state of the request and the timestamp of the last status change.
- DATE_REQUIRED — the requested completion date for the movement.
- DESCRIPTION — user-entered reference text.
- SHIP_TO_LOCATION_ID, FREIGHT_CODE, SHIPMENT_METHOD, and AUTO_RECEIPT_FLAG — shipping and receiving attributes governing how material is handled.
- REFERENCE_ID and REFERENCE_DETAIL_ID — pointers to originating documents (such as sales orders or requisitions).
- Audit columns (
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE) and the DFF columns (ATTRIBUTE_CATEGORY,ATTRIBUTE1–ATTRIBUTE15).
Common Use Cases and Queries
Typical reporting scenarios include tracking open move orders by organization, reconciling completed transfers, and auditing status transitions. A representative query joins headers to lines:
- List open move orders awaiting execution:
SELECT HEADER_ID, REQUEST_NUMBER, ORGANIZATION_ID, HEADER_STATUS, DATE_REQUIRED FROM IC_TXN_REQUEST_HEADERS WHERE HEADER_STATUS < 'CLOSED'. - Detail a specific request:
SELECT h.REQUEST_NUMBER, h.TRANSACTION_TYPE_ID, l.* FROM IC_TXN_REQUEST_HEADERS h JOIN IC_TXN_REQUEST_LINES l ON l.HEADER_ID = h.HEADER_ID WHERE h.REQUEST_NUMBER = :req. - Volume analysis by organization and type groupings.
Related Objects
The primary dependency is the line-level child table IC_TXN_REQUEST_LINES, joined on IC_TXN_REQUEST_LINES.HEADER_ID = IC_TXN_REQUEST_HEADERS.HEADER_ID. Transaction type and organization context reference inventory setup tables (MTL_TRANSACTION_TYPES, ORG_ORGANIZATION_DEFINITIONS). Location and account references link to shipping and GL tables. Move order processing is commonly driven through the inventory move order APIs and the GMI transaction execution programs.
-
Table: IC_TXN_REQUEST_HEADERS
12.1.1
owner:GMI, object_type:TABLE, fnd_design_data:GMI.IC_TXN_REQUEST_HEADERS, object_name:IC_TXN_REQUEST_HEADERS, status:VALID, product: GMI - Process Manufacturing Inventory , description: Move Order Headers , implementation_dba_data: GMI.IC_TXN_REQUEST_HEADERS ,
-
Table: IC_TXN_REQUEST_HEADERS
12.2.2
owner:GMI, object_type:TABLE, fnd_design_data:GMI.IC_TXN_REQUEST_HEADERS, object_name:IC_TXN_REQUEST_HEADERS, status:VALID, product: GMI - Process Manufacturing Inventory , description: Move Order Headers , implementation_dba_data: GMI.IC_TXN_REQUEST_HEADERS ,
-
SYNONYM: APPS.IC_TXN_REQUEST_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IC_TXN_REQUEST_HEADERS, status:VALID,
-
SYNONYM: APPS.IC_TXN_REQUEST_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IC_TXN_REQUEST_HEADERS, status:VALID,
-
APPS.GMI_MO_PURGE SQL Statements
12.1.1
-
APPS.GMI_MO_PURGE SQL Statements
12.2.2
-
APPS.GMI_MOVE_ORDER_HEADER_UTIL SQL Statements
12.1.1
-
APPS.GMI_MOVE_ORDER_HEADER_UTIL SQL Statements
12.2.2
-
VIEW: GMI.IC_TXN_REQUEST_HEADERS#
12.2.2
owner:GMI, object_type:VIEW, object_name:IC_TXN_REQUEST_HEADERS#, status:VALID,
-
VIEW: APPS.GMI_WSH_PICK_SLIP_V
12.2.2
-
VIEW: APPS.GMI_WSH_PICK_SLIP_V
12.1.1
-
TABLE: GMI.IC_TXN_REQUEST_HEADERS
12.1.1
owner:GMI, object_type:TABLE, fnd_design_data:GMI.IC_TXN_REQUEST_HEADERS, object_name:IC_TXN_REQUEST_HEADERS, status:VALID,
-
Table: IC_TXN_REQUEST_LINES
12.2.2
owner:GMI, object_type:TABLE, fnd_design_data:GMI.IC_TXN_REQUEST_LINES, object_name:IC_TXN_REQUEST_LINES, status:VALID, product: GMI - Process Manufacturing Inventory , description: Move order lines , implementation_dba_data: GMI.IC_TXN_REQUEST_LINES ,
-
VIEW: GMI.IC_TXN_REQUEST_HEADERS#
12.2.2
-
TABLE: GMI.IC_TXN_REQUEST_HEADERS
12.2.2
owner:GMI, object_type:TABLE, fnd_design_data:GMI.IC_TXN_REQUEST_HEADERS, object_name:IC_TXN_REQUEST_HEADERS, status:VALID,
-
PACKAGE BODY: APPS.GML_MOLINE_DATA_FIX_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GML_MOLINE_DATA_FIX_PKG, status:VALID,
-
PACKAGE BODY: APPS.GMI_MO_PURGE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMI_MO_PURGE, status:VALID,
-
Table: IC_TXN_REQUEST_LINES
12.1.1
owner:GMI, object_type:TABLE, fnd_design_data:GMI.IC_TXN_REQUEST_LINES, object_name:IC_TXN_REQUEST_LINES, status:VALID, product: GMI - Process Manufacturing Inventory , description: Move order lines , implementation_dba_data: GMI.IC_TXN_REQUEST_LINES ,
-
VIEW: APPS.GMI_PICK_SLIP_VW
12.2.2
-
VIEW: APPS.GMI_PICK_SLIP_VW
12.1.1
-
View: GMI_WSH_PICK_SLIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_WSH_PICK_SLIP_V, object_name:GMI_WSH_PICK_SLIP_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is the basis of the OPM Pick Slip report (GMIRDPIK.rdf). , implementation_dba_data: APPS.GMI_WSH_PICK_SLIP_V ,
-
PACKAGE BODY: APPS.GML_MOLINE_DATA_FIX_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GML_MOLINE_DATA_FIX_PKG, status:VALID,
-
PACKAGE BODY: APPS.GMI_MOVE_ORDER_HEADER_UTIL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMI_MOVE_ORDER_HEADER_UTIL, status:VALID,
-
PACKAGE BODY: APPS.GML_MOBILE_MOVE_ORDER
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GML_MOBILE_MOVE_ORDER, status:VALID,
-
View: GMI_WSH_PICK_SLIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_WSH_PICK_SLIP_V, object_name:GMI_WSH_PICK_SLIP_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is the basis of the OPM Pick Slip report (GMIRDPIK.rdf). , implementation_dba_data: APPS.GMI_WSH_PICK_SLIP_V ,
-
PACKAGE BODY: APPS.GMI_MO_PURGE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMI_MO_PURGE, status:VALID,
-
PACKAGE BODY: APPS.GMI_PICK_RELEASE_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMI_PICK_RELEASE_UTIL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
APPS.GML_OPM_OM_CONV_MIG_PKG SQL Statements
12.1.1
-
APPS.GML_OPM_OM_CONV_MIG_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.GMI_MOVE_ORDER_HEADER_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMI_MOVE_ORDER_HEADER_UTIL, status:VALID,
-
PACKAGE BODY: APPS.GMI_PICK_RELEASE_UTIL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMI_PICK_RELEASE_UTIL, status:VALID,
-
APPS.GMI_PICK_RELEASE_UTIL SQL Statements
12.2.2
-
APPS.GMI_PICK_RELEASE_UTIL SQL Statements
12.1.1
-
VIEW: APPS.IC_TXN_REQUEST_LINES_V
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.IC_TXN_REQUEST_LINES_V
12.1.1
-
PACKAGE BODY: APPS.GML_MOBILE_MOVE_ORDER
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GML_MOBILE_MOVE_ORDER, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.GMI_MO_PURGE
12.2.2
-
PACKAGE BODY: APPS.GMI_MO_PURGE
12.1.1
-
APPS.GML_MOLINE_DATA_FIX_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.GML_OPM_OM_CONV_MIG_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GML_OPM_OM_CONV_MIG_PKG, status:VALID,
-
PACKAGE BODY: APPS.GML_OPM_OM_CONV_MIG_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GML_OPM_OM_CONV_MIG_PKG, status:VALID,
-
APPS.GML_MOLINE_DATA_FIX_PKG SQL Statements
12.1.1
-
VIEW: APPS.GMI_WSH_PICK_SLIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_WSH_PICK_SLIP_V, object_name:GMI_WSH_PICK_SLIP_V, status:VALID,
-
View: GMI_PICK_SLIP_VW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_PICK_SLIP_VW, object_name:GMI_PICK_SLIP_VW, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is the basis of the OPM Pick Slip report (GMIRDPIK.rdf). , implementation_dba_data: APPS.GMI_PICK_SLIP_VW ,
-
View: GMI_PICK_SLIP_VW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_PICK_SLIP_VW, object_name:GMI_PICK_SLIP_VW, status:VALID, product: GMI - Process Manufacturing Inventory , description: This view is the basis of the OPM Pick Slip report (GMIRDPIK.rdf). , implementation_dba_data: APPS.GMI_PICK_SLIP_VW ,