Search Results mtl_transaction_flows_v
Overview
MTL_TRANSACTION_FLOWS_V is a seeded Oracle E-Business Suite view owned by the APPS schema and shipped with the Inventory (INV) product. It is VALID in both the 12.1.1 and 12.2.2 releases. The view exposes Intercompany transaction flows of type shipping and procuring, and is the principal reporting and integration surface for the accounting and trading relationships that govern how one operating unit transacts with another. It is not an operational entry form; it is a denormalized read-only projection over the intercompany flow header, line, and parameter tables, allowing users to resolve flow definitions without writing the three-way join themselves.
For users who search on the column name expense_accrual_account_id, this view is the documented source. That column carries the General Ledger account used to accrue the expense side of an intercompany shipment or receipt when the inventory and intercompany accounting entries are generated.
Underlying Base Objects
The view text joins three synonyms that resolve to the following APPS tables:
- MTL_INTERCOMPANY_PARAMETERS (aliased IC) — holds the trading-partner and accounting configuration for a given ship organization, sell organization, and flow type.
- MTL_TRANSACTION_FLOW_HEADERS (aliased H) — holds the flow header, including flow type, qualifier, date range, and pricing options.
- MTL_TRANSACTION_FLOW_LINES (aliased L) — holds the flow line rows, including line number and the from/to organization identifiers.
The join is driven as: H.HEADER_ID = L.HEADER_ID, with L.FROM_ORG_ID = IC.SHIP_ORGANIZATION_ID, L.TO_ORG_ID = IC.SELL_ORGANIZATION_ID, and H.FLOW_TYPE = IC.FLOW_TYPE. Because MTL_INTERCOMPANY_PARAMETERS is the tuning key, the header/line combination is effectively filtered to parameters that already exist for that ship/sell/flow combination.
Key Columns
- HEADER_ID, LINE_NUMBER — primary identifiers of the flow header and its lines.
- FLOW_TYPE — identifies shipping versus procuring flows; this is the discriminator that governs which parameters row is joined.
- START_ORG_ID, END_ORG_ID, ORGANIZATION_ID — header-level organization and inventory organization context.
- FROM_ORG_ID, TO_ORG_ID, FROM_ORGANIZATION_ID, TO_ORGANIZATION_ID — line-level source and destination organizations.
- QUALIFIER_CODE, QUALIFIER_VALUE_ID — the qualifier that scopes the flow definition.
- START_DATE, END_DATE — effective window during which the flow is active.
- CUSTOMER_ID, ADDRESS_ID, CUSTOMER_SITE_ID, CUST_TRX_TYPE_ID, VENDOR_ID, VENDOR_SITE_ID — the trading partner, site, transaction type, and supplier details for the flow.
- FREIGHT_CODE_COMBINATION_ID, INVENTORY_ACCRUAL_ACCOUNT_ID, EXPENSE_ACCRUAL_ACCOUNT_ID, INTERCOMPANY_COGS_ACCOUNT_ID — the accounting flexfield references applied when intercompany accounting entries are generated.
expense_accrual_account_idis the accrual account for the expense side of the transaction. - ASSET_ITEM_PRICING_OPTION, EXPENSE_ITEM_PRICING_OPTION — the pricing method used for asset and expense lines respectively.
- NEW_ACCOUNTING_FLAG, INV_CURRENCY_CODE — indicates whether the newer intercompany accounting model is in effect and the currency of the inventory flow.
Common Use Cases and Queries
Typical uses include validating intercompany setup prior to period close, auditing the accrual and COGS accounts assigned to a ship/sell pair, and extracting flow definitions for reconciliation or data-warehouse loads.
To find the expense accrual account for all active shipping flows:
SELECT header_id, from_org_id, to_org_id, flow_type, expense_accrual_account_id
FROM apps.mtl_transaction_flows_v
WHERE flow_type = 'SHIPPING';
To list the complete accounting configuration for a specific ship/sell pair:
SELECT header_id, line_number, from_org_id, to_org_id,
inventory_accrual_account_id, expense_accrual_account_id,
intercompany_cogs_account_id
FROM apps.mtl_transaction_flows_v
WHERE from_org_id = &ship_org
AND to_org_id = &sell_org;
Because accounts are stored as code_combination_id references, results are normally joined to FND_FLEX_VALUES or GL_CODE_COMBINATIONS to render the concatenated account string for reporting.
-
View: MTL_TRANSACTION_FLOWS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TRANSACTION_FLOWS_V, object_name:MTL_TRANSACTION_FLOWS_V, status:VALID, product: INV - Inventory , description: MTL_TRANSACTION_FLOWS_V is a view for Intercompany transaction flows of type shipping and procuring flows. , implementation_dba_data: APPS.MTL_TRANSACTION_FLOWS_V ,
-
View: MTL_TRANSACTION_FLOWS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TRANSACTION_FLOWS_V, object_name:MTL_TRANSACTION_FLOWS_V, status:VALID, product: INV - Inventory , description: MTL_TRANSACTION_FLOWS_V is a view for Intercompany transaction flows of type shipping and procuring flows. , implementation_dba_data: APPS.MTL_TRANSACTION_FLOWS_V ,
-
SYNONYM: APPS.MTL_TRANSACTION_FLOW_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_TRANSACTION_FLOW_LINES, status:VALID,
-
SYNONYM: APPS.MTL_TRANSACTION_FLOW_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_TRANSACTION_FLOW_HEADERS, status:VALID,
-
SYNONYM: APPS.MTL_TRANSACTION_FLOW_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_TRANSACTION_FLOW_LINES, status:VALID,
-
SYNONYM: APPS.MTL_TRANSACTION_FLOW_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_TRANSACTION_FLOW_HEADERS, status:VALID,
-
SYNONYM: APPS.MTL_INTERCOMPANY_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_INTERCOMPANY_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MTL_INTERCOMPANY_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_INTERCOMPANY_PARAMETERS, status:VALID,
-
VIEW: APPS.MTL_TRANSACTION_FLOWS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TRANSACTION_FLOWS_V, object_name:MTL_TRANSACTION_FLOWS_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.MTL_TRANSACTION_FLOWS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TRANSACTION_FLOWS_V, object_name:MTL_TRANSACTION_FLOWS_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2