Search Results movement_status
Overview
APPS.ECE_MTL_MOV_STAT_V is a reporting view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes aggregated statistical movement data drawn from the Oracle Inventory movement statistics tables, filtered and joined against the EDI/E-Commerce Gateway configuration lookups. The view is part of the ECE (E-Commerce Gateway) family of database objects, and its name reflects that heritage: ECE for the E-Commerce Gateway module, MTL for the Inventory (MTL) tables, and MOV_STAT for movement statistics.
Its functional purpose is to present a consolidated, grouped summary of movement statistics records that have been marked as verified or finalized (MOVEMENT_STATUS values of 'V' or 'F') but have not yet been flagged as transmitted to an external trading partner. In practical terms, this view acts as a staging/reporting feed for Intrastat-style or similar regulatory statistical reporting, and for EDI movement-statistics interfaces that must transmit period movement data to customs or partner systems. Because the view aggregates (SUM and COUNT) rather than presenting row-level detail, it is primarily intended for reporting, reconciliation, and interface extraction rather than for transactional processing.
Underlying Base Objects
According to the documented view metadata for release 12.2.2, this view is defined over the following referenced base objects:
- MTL_MOVEMENT_STATISTICS (SYNONYM) — the primary fact source. This table stores the individual movement statistics records, including period, movement type, transaction reference, values, weights, and status. The view aliases it as MMS.
- FND_LOOKUPS (VIEW) — the Oracle Application Object Library lookups view, aliased as FL. It is used to validate the source document type of each movement record against the lookup type
MVT_SOURCE_DOCUMENT_TYPES. - FND_GLOBAL (PACKAGE) — referenced as part of the view's runtime environment, providing session and context information such as organization and responsibility context at query time.
The join between MTL_MOVEMENT_STATISTICS and FND_LOOKUPS is an inner join on FL.LOOKUP_TYPE = 'MVT_SOURCE_DOCUMENT_TYPES' and FL.LOOKUP_CODE = MMS.DOCUMENT_SOURCE_TYPE, so only movement records whose source document type corresponds to a valid, defined lookup value are returned. The view further restricts output to records whose MOVEMENT_STATUS is 'V' or 'F' and whose EDI_SENT_FLAG is 'N' or null.
Key Columns
- MOVEMENT_TYPE, PERIOD_NAME — classify each aggregated row by the movement category and accounting/reporting period.
- EDI_TRANSACTION_REFERENCE, EDI_TRANSACTION_DATE — the EDI transaction reference and date associated with the movement statistics.
- REPORT_REFERENCE, REPORT_DATE — the regulatory/report reference and its date.
- STAT_TYPE, USAGE_TYPE, MOVEMENT_STATUS, ZONE_CODE — statistical type, usage classification, the movement status flag ('V' verified or 'F' finalized), and geographic zone code.
- ORGANIZATION_ID, ENTITY_ORG_ID — the inventory organization and the entity (legal/registration) organization.
- TOTAL_INVOICE_EXT_VALUE — sum of invoice line extended value (INVOICE_LINE_EXT_VALUE, nulls treated as zero).
- TOTAL_SUPPLEMENTARY_UNITS — sum of STAT_EXT_VALUE, representing supplementary statistical units.
- TOTAL_STATISTICAL_VALUE — sum of MOVEMENT_AMOUNT, the statistical monetary value.
- TOTAL_TOTAL_WEIGHT — sum of TOTAL_WEIGHT across grouped records.
- TOTAL_RECORDS — COUNT(*) of underlying movement records contributing to the group.
Common Use Cases and Queries
Typical scenarios include extracting non-transmitted movement statistics for EDI transmission, reconciling verified/finalized movement values by period and organization, and feeding regulatory statistical declarations. A representative query selecting aggregated statistics for a period and organization would be of the form:
SELECT period_name, movement_type, organization_id, TOTAL_STATISTICAL_VALUE, TOTAL_TOTAL_WEIGHT, TOTAL_RECORDS FROM APPS.ECE_MTL_MOV_STAT_V WHERE period_name = :period AND organization_id = :org_id ORDER BY movement_type;SELECT period_name, SUM(TOTAL_STATISTICAL_VALUE) FROM APPS.ECE_MTL_MOV_STAT_V WHERE MOVEMENT_STATUS IN ('V','F') GROUP BY period_name;SELECT * FROM APPS.ECE_MTL_MOV_STAT_V WHERE EDI_TRANSACTION_REFERENCE IS NULL AND period_name = :period;
Because the view already filters on MOVEMENT_STATUS and EDI_SENT_FLAG, queries generally need only supply period, organization, or reference predicates. The view should be treated as read-only; all maintenance of movement statistics occurs against MTL_MOVEMENT_STATISTICS.
-
APPS.INV_MGD_MVT_RESET_TRANS SQL Statements
12.2.2
-
APPS.INV_MGD_MVT_RESET_TRANS SQL Statements
12.1.1
-
VIEW: APPS.ECE_MTL_MOV_STAT_V
12.1.1
-
VIEW: APPS.ECE_MTL_MOV_STAT_V
12.2.2
-
View: ECE_MTL_MOV_STAT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_MTL_MOV_STAT_V, object_name:ECE_MTL_MOV_STAT_V, status:VALID, product: EC - e-Commerce Gateway , description: Contains the movement type information for documents with EDI transactions pending. , implementation_dba_data: APPS.ECE_MTL_MOV_STAT_V ,
-
APPS.INV_MGD_MVT_EXPORT_DATA SQL Statements
12.2.2
-
APPS.INV_MGD_MVT_EXPORT_DATA SQL Statements
12.1.1
-
View: ECE_MTL_MOV_STAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_MTL_MOV_STAT_V, object_name:ECE_MTL_MOV_STAT_V, status:VALID, product: EC - e-Commerce Gateway , description: Contains the movement type information for documents with EDI transactions pending. , implementation_dba_data: APPS.ECE_MTL_MOV_STAT_V ,
-
APPS.MTL_MOVEMENT_STAT_PKG SQL Statements
12.1.1
-
APPS.MTL_MOVEMENT_STAT_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.INV_MGD_MVT_RESET_TRANS
12.1.1
-
PACKAGE BODY: APPS.INV_MGD_MVT_RESET_TRANS
12.2.2
-
VIEW: EC.ECE_MVSTO_HEADERS#
12.2.2
-
VIEW: APPS.ECE_MTL_MOV_STAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_MTL_MOV_STAT_V, object_name:ECE_MTL_MOV_STAT_V, status:VALID,
-
VIEW: APPS.ECE_MTL_MOV_STAT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_MTL_MOV_STAT_V, object_name:ECE_MTL_MOV_STAT_V, status:VALID,
-
VIEW: INV.MTL_MOVEMENT_STATISTICS#
12.2.2
-
View: ECE_MVSTO_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_MVSTO_HEADERS_V, object_name:ECE_MVSTO_HEADERS_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts header informationfor the outbound Movement Statistics (INTRASTAT) transaction.@rep:scope private@rep:product INV@rep:lifecycle active@rep:displayname Movement Statistics Header View@rep:category BUSINESS_ENTITY INV_MOVEM , implementation_dba_data: APPS.ECE_MVSTO_HEADERS_V ,
-
View: ECE_MVSTO_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_MVSTO_HEADERS_V, object_name:ECE_MVSTO_HEADERS_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts header informationfor the outbound Movement Statistics (INTRASTAT) transaction.@rep:scope private@rep:product INV@rep:lifecycle active@rep:displayname Movement Statistics Header View@rep:category BUSINESS_ENTITY INV_MOVEM , implementation_dba_data: APPS.ECE_MVSTO_HEADERS_V ,
-
APPS.INV_MGD_MVT_PURGE_TRANS SQL Statements
12.2.2
-
APPS.INV_MGD_MVT_PURGE_TRANS SQL Statements
12.1.1
-
VIEW: APPS.ECE_MVSTO_HEADERS_V
12.1.1
-
VIEW: APPS.ECE_MVSTO_HEADERS_V
12.2.2
-
APPS.INV_MGD_MVT_STATS_PVT SQL Statements
12.1.1
-
APPS.INV_MGD_MVT_STATS_PVT SQL Statements
12.2.2
-
APPS.INV_INVSTMVT_XMLP_PKG SQL Statements
12.2.2
-
APPS.INV_INVSTMVT_XMLP_PKG SQL Statements
12.1.1
-
VIEW: EC.ECE_MVSTO_HEADERS#
12.2.2
owner:EC, object_type:VIEW, object_name:ECE_MVSTO_HEADERS#, status:VALID,
-
TABLE: INV.MTL_MOVEMENT_STATISTICS
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_MOVEMENT_STATISTICS, object_name:MTL_MOVEMENT_STATISTICS, status:VALID,
-
VIEW: INV.MTL_MOVEMENT_STATISTICS#
12.2.2
owner:INV, object_type:VIEW, object_name:MTL_MOVEMENT_STATISTICS#, status:VALID,
-
VIEW: APPS.ECE_MVSTO_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_MVSTO_HEADERS_V, object_name:ECE_MVSTO_HEADERS_V, status:VALID,
-
VIEW: APPS.ECE_MVSTO_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_MVSTO_HEADERS_V, object_name:ECE_MVSTO_HEADERS_V, status:VALID,
-
TABLE: INV.MTL_MOVEMENT_STATISTICS
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_MOVEMENT_STATISTICS, object_name:MTL_MOVEMENT_STATISTICS, status:VALID,
-
PACKAGE BODY: APPS.MTL_MOVEMENT_STAT_PKG
12.1.1
-
PACKAGE BODY: APPS.MTL_MOVEMENT_STAT_PKG
12.2.2
-
VIEW: APPS.WSHFV_DELIVERY_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERY_DETAILS, object_name:WSHFV_DELIVERY_DETAILS, status:VALID,
-
VIEW: APPS.WSHFV_DELIVERY_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERY_DETAILS, object_name:WSHFV_DELIVERY_DETAILS, status:VALID,
-
APPS.MTL_MOVEMENT_STATISTICS2_PKG SQL Statements
12.2.2
-
APPS.MTL_MOVEMENT_STATISTICS2_PKG SQL Statements
12.1.1
-
TABLE: EC.ECE_MVSTO_HEADERS
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_MVSTO_HEADERS, object_name:ECE_MVSTO_HEADERS, status:VALID,
-
APPS.MTL_MOVEMENT_STATISTICS3_PKG SQL Statements
12.1.1
-
TABLE: EC.ECE_MVSTO_HEADERS
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_MVSTO_HEADERS, object_name:ECE_MVSTO_HEADERS, status:VALID,
-
APPS.MTL_MOVEMENT_STATISTICS3_PKG SQL Statements
12.2.2
-
APPS.MTL_MOVEMENT_RPT_PKG SQL Statements
12.2.2
-
APPS.MTL_MOVEMENT_STATISTICS1_PKG SQL Statements
12.1.1
-
APPS.MTL_MOVEMENT_STATISTICS1_PKG SQL Statements
12.2.2
-
APPS.MTL_MOVEMENT_RPT_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.INV_MGD_MVT_EXPORT_DATA
12.1.1
-
PACKAGE BODY: APPS.INV_MGD_MVT_PURGE_TRANS
12.1.1
-
PACKAGE BODY: APPS.INV_MGD_MVT_PURGE_TRANS
12.2.2
-
View: WSHFV_DELIVERY_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERY_DETAILS, object_name:WSHFV_DELIVERY_DETAILS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Delivery Details. , implementation_dba_data: APPS.WSHFV_DELIVERY_DETAILS ,