Search Results xml_document_id
Overview
MTL_ADJ_SYNC_WRAPPER_V is an APPS-owned database view within the Oracle Inventory (INV) module, documented in ETRM for Oracle EBS 12.1.1 and 12.2.2 with a VALID status. It functions as a synchronous wrapper — an aggregation and normalization layer — over the adjustment transaction synchronization view, MTL_ADJUSTMENT_TXN_SYNC_V. Its role is to present inventory adjustment and transfer transactions in a flattened, summarized form suitable for downstream reporting, interface extraction, and XML-based integration with external or adjacent systems such as order management, warehouse management, or supply chain execution platforms.
The view does not store data; it is a runtime projection that consolidates transactional detail and rolls up quantities. Because it exposes adjustment and subinventory transfer activity in a single, consistent shape, it is frequently used where a stable, denormalized read model is needed without querying the underlying transaction tables directly.
Underlying Base Objects
The view is defined over the following documented referenced base objects:
- MTL_ADJUSTMENT_TXN_SYNC_V — the primary source view supplying all transactional columns and measure values.
- HR_GENERAL (PACKAGE) — an Oracle HR utility package, typically invoked for organizational or security-related resolution.
- HR_SECURITY (PACKAGE) — provides organization-level security filtering, ensuring that a querying user only sees inventory transactions for organizations they are authorized to access.
The relationship to the base view is aggregate: MTL_ADJ_SYNC_WRAPPER_V groups the rows returned by MTL_ADJUSTMENT_TXN_SYNC_V and applies SUM() to the quantity measures. This makes the wrapper the appropriate layer when summarized, one-row-per-transaction-group output is desired.
Key Columns
The view exposes identity, location, item, and quantity columns. Significant groupings include:
- TRANSACTION_NUMBER, TRANSACTION_DATE, TRANSACTION_TYPE, TRANSACTION_TYPE_ID — the transaction identity and timing.
- TRANSACTION_SOURCE, TRANSACTION_SOURCE_TYPE_ID, TRANSACTION_ACTION_ID — origin and action classification for the movement.
- ORGANIZATION_ID, WAREHOUSE — the inventory organization and warehouse context.
- INVENTORY_ITEM_ID, ITEM, ITEM_DESCRIPTION, REVISION — the item being moved.
- SUBINVENTORY, LOCATOR, LPN — the source storage location.
- TRANSFER_WAREHOUSE, TRANSFER_SUBINVENTORY, TRANSFER_LOCATOR, TRANSFER_LPN — the destination storage location, directly relevant to the search term TRANSFER_SUBINVENTORY.
- TRANSACTION_QUANTITY, TRANSACTION_UOM — summed transactional quantity and its unit of measure.
- PRIMARY_QUANTITY, PRIMARY_UOM, SECONDARY_QUANTITY, SECONDARY_UOM — summed primary and secondary quantities.
- CREATION_DATE, TRANSACTION_EXTRACTED, XML_DOCUMENT_ID — audit and integration tracking fields.
Common Use Cases and Queries
The view is typically queried to report summarized adjustment and transfer activity, and to extract records not yet transmitted for integration. The presence of XML_DOCUMENT_ID and TRANSACTION_EXTRACTED supports extraction-driven workflows.
Listing recent transfer activity by destination subinventory:
SELECT transaction_number, transaction_date, item, subinventory, transfer_subinventory, transaction_quantity, transaction_uom FROM mtl_adj_sync_wrapper_v WHERE transfer_subinventory = :p_subinventory AND organization_id = :p_org ORDER BY transaction_date DESC;
Identifying unextracted transactions pending interface:
SELECT organization_id, transaction_number, transaction_type, xml_document_id FROM mtl_adj_sync_wrapper_v WHERE transaction_extracted = 'N' ORDER BY creation_date;
Summarizing transfer volumes between subinventories for a period:
SELECT subinventory, transfer_subinventory, SUM(transaction_quantity) qty FROM mtl_adj_sync_wrapper_v WHERE transaction_date BETWEEN :p_from AND :p_to GROUP BY subinventory, transfer_subinventory;
Because HR_SECURITY governs organization visibility, results reflect the querying user's authorized inventory organizations.
-
View: MTL_ADJ_SYNC_WRAPPER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ADJ_SYNC_WRAPPER_V, object_name:MTL_ADJ_SYNC_WRAPPER_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_ADJ_SYNC_WRAPPER_V ,