Search Results report_reference
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.
-
TYPE: SYS.WRI$_REPT_SQLMONITOR
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_SQLMONITOR, status:VALID,
-
TYPE: SYS.WRI$_REPT_SQLMONITOR
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_SQLMONITOR, status:VALID,
-
VIEW: APPS.ECE_MTL_MOV_STAT_V
12.2.2
-
TYPE: SYS.WRI$_REPT_DBREPLAY
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_DBREPLAY, status:VALID,
-
TYPE: SYS.WRI$_REPT_PLAN_DIFF
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_PLAN_DIFF, status:VALID,
-
TYPE: SYS.WRI$_REPT_MEMORY
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_MEMORY, status:VALID,
-
TYPE: SYS.WRI$_REPT_XPLAN
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_XPLAN, status:VALID,
-
TYPE: SYS.WRI$_REPT_SQLT
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_SQLT, status:VALID,
-
TYPE: SYS.WRI$_REPT_ARC
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_ARC, status:VALID,
-
TYPE: SYS.WRI$_REPT_PLAN_DIFF
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_PLAN_DIFF, status:VALID,
-
TYPE: SYS.WRI$_REPT_XPLAN
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_XPLAN, status:VALID,
-
TYPE: SYS.WRI$_REPT_AWRV
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_AWRV, status:VALID,
-
TYPE: SYS.WRI$_REPT_SQLT
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_SQLT, status:VALID,
-
TYPE: SYS.WRI$_REPT_SPMEVOLVE
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_SPMEVOLVE, status:VALID,
-
TYPE: SYS.WRI$_REPT_SQLDETAIL
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_SQLDETAIL, status:VALID,
-
TYPE: SYS.WRI$_REPT_CPADDM
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_CPADDM, status:VALID,
-
TYPE: SYS.WRI$_REPT_EMX_PERF
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_EMX_PERF, status:VALID,
-
TYPE: SYS.WRI$_REPT_ARC
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_ARC, status:VALID,
-
TYPE: SYS.WRI$_REPT_ADDM
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_ADDM, status:VALID,
-
TYPE: SYS.WRI$_REPT_TCB
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_TCB, status:VALID,
-
VIEW: APPS.ECE_MTL_MOV_STAT_V
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.INV_MGD_MVT_RESET_TRANS SQL Statements
12.1.1
-
APPS.INV_MGD_MVT_RESET_TRANS SQL Statements
12.2.2
-
TYPE: SYS.WRI$_REPT_ADDM
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_ADDM, status:VALID,
-
TYPE: SYS.WRI$_REPT_MEMORY
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_MEMORY, status:VALID,
-
TYPE: SYS.WRI$_REPT_SESSION
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_SESSION, status:VALID,
-
TYPE: SYS.WRI$_REPT_SECURITY
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_SECURITY, status:VALID,
-
TYPE: SYS.WRI$_REPT_DBHOME
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_DBHOME, status:VALID,
-
TYPE: SYS.WRI$_REPT_CONFIG
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_CONFIG, status:VALID,
-
TYPE: SYS.WRI$_REPT_SQLDETAIL
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_SQLDETAIL, status:VALID,
-
TYPE: SYS.WRI$_REPT_STORAGE
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_STORAGE, status:VALID,
-
TYPE: SYS.WRI$_REPT_AWRV
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_AWRV, status:VALID,
-
TYPE: SYS.WRI$_REPT_PERF
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_PERF, status:VALID,
-
TYPE: SYS.WRI$_REPT_SPMEVOLVE
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_SPMEVOLVE, status:VALID,
-
TYPE: SYS.WRI$_REPT_PERF
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_PERF, status:VALID,
-
TYPE: SYS.WRI$_REPT_TCB
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_TCB, status:VALID,
-
TYPE: SYS.WRI$_REPT_CELL
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_CELL, status:VALID,
-
TYPE: SYS.WRI$_REPT_EMX_PERF
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_EMX_PERF, status:VALID,
-
TYPE: SYS.WRI$_REPT_SECURITY
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_SECURITY, status:VALID,
-
TYPE: SYS.WRI$_REPT_OPTSTATS
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_OPTSTATS, status:VALID,
-
TYPE: SYS.WRI$_REPT_ASH
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_ASH, status:VALID,
-
TYPE: SYS.WRI$_REPT_CELL
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_CELL, status:VALID,
-
TYPE: SYS.WRI$_REPT_STORAGE
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_STORAGE, status:VALID,
-
TYPE: SYS.WRI$_REPT_OPTSTATS
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_OPTSTATS, status:VALID,
-
TYPE: SYS.WRI$_REPT_DBREPLAY
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_DBREPLAY, status:VALID,
-
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 ,
-
TYPE: SYS.WRI$_REPT_SQLPI
12.2.2
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_SQLPI, status:VALID,
-
TYPE: SYS.WRI$_REPT_RTADDM
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_RTADDM, status:VALID,
-
TYPE: SYS.WRI$_REPT_ASH
12.1.1
owner:SYS, object_type:TYPE, object_name:WRI$_REPT_ASH, status:VALID,