Search Results transaction_display_date
Overview
APPS.GME_INV_TXNS_ERES_V is a reporting and integration view in Oracle E-Business Suite that consolidates material transaction data for process manufacturing. It is designed to surface both pending and posted inventory transactions in a single, presentation-ready result set, which makes it suitable for e-res (electronic records) reporting, discrepancy analysis, and downstream interfaces. Because the view is owned by APPS and defined over public synonyms and key flexfield views rather than private tables, it is fully accessible to custom reports, concurrent programs, and integration layers without requiring direct grants on the underlying base tables.
The view is defined as a UNION ALL of two query blocks: the first selects from MTL_MATERIAL_TRANSACTIONS_TEMP, representing transactions that have been staged but not yet posted, and the second selects from MTL_MATERIAL_TRANSACTIONS, representing transactions that have been posted to inventory. The TRANSACTION_TEMP_ID and TRANSACTION_ID columns are populated mutually exclusively — the temp block sets TRANSACTION_TEMP_ID and returns NULL for TRANSACTION_ID, while the posted block does the reverse — allowing consumers to identify the origin of each row. This design supports reconciliation between unprocessed and processed material movements.
Underlying Base Objects
The view references the following documented base objects:
- MTL_MATERIAL_TRANSACTIONS_TEMP — staged, unposted transactions.
- MTL_MATERIAL_TRANSACTIONS — posted inventory transactions.
- MTL_LOT_NUMBERS — lot attributes including parent lot, grade code, status, and expiration.
- MTL_MATERIAL_STATUSES_TL — translated material status descriptions.
- MTL_ITEM_LOCATIONS_KFV — the concatenated key flexfield view for stock locators.
- MTL_TRANSACTION_REASONS — reason codes for transactions.
- MTL_TRANSACTION_TYPES — transaction type names.
- FND_DATE — the PL/SQL package whose date_to_displayDT function renders display-formatted dates.
All joins except the transaction type join are outer joins, so a row is returned even when lot, reason, locator, or status information is absent. The MTL_MATERIAL_STATUSES_TL join is additionally restricted by USERENV('LANG') to return status text in the session language.
Key Columns
- INVENTORY_ITEM_ID, ORGANIZATION_ID — item and inventory organization identifiers.
- TRANSACTION_TEMP_ID / TRANSACTION_ID — mutually exclusive identifiers distinguishing staged from posted rows.
- TRANSACTION_DISPLAY_DATE — the value most often searched for; it is produced by fnd_date.date_to_displayDT(MMTT.TRANSACTION_DATE), returning the transaction date in the application's display format rather than the raw DATE.
- TRANSACTION_DATE — the underlying database date value.
- TRANSACTION_QUANTITY, TRANSACTION_UOM, SECONDARY_TRANSACTION_QUANTITY, SECONDARY_UOM_CODE, PRIMARY_QUANTITY — quantity and unit-of-measure detail.
- LOT_NUMBER, PARENT_LOT_NUMBER, GRADE_CODE, LOT_STATUS, LOT_EXPIRATION_DATE, LOT_EXPIRATION_DISPLAY_DATE — lot and quality attributes.
- SUBINVENTORY_CODE, LOCATOR_ID, LOCATOR — storage location information, with LOCATOR returned as concatenated segments.
- TRANSACTION_TYPE_NAME, TRANSACTION_SOURCE_NAME, REASON_NAME — descriptive labels for the transaction type, source, and reason.
Common Use Cases and Queries
The view is typically queried to analyze material movements by item, organization, date, or lot. The display date column is frequently used in report parameters and layouts where a formatted date string is required.
SELECT inventory_item_id, organization_id,
transaction_display_date, transaction_quantity,
transaction_uom, lot_number, subinventory_code
FROM apps.gme_inv_txns_eres_v
WHERE organization_id = :org_id
AND transaction_date >= :from_date;
To isolate unposted transaction activity awaiting processing:
SELECT * FROM apps.gme_inv_txns_eres_v WHERE transaction_temp_id IS NOT NULL AND transaction_display_date IS NOT NULL;
Because TRANSACTION_DISPLAY_DATE depends on the FND_DATE package and session settings, reports that require strict numeric ordering should filter and sort on TRANSACTION_DATE, using the display column only for output.
-
VIEW: APPS.GME_INV_TXNS_ERES_V
12.2.2
-
View: GME_INV_TXNS_ERES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_INV_TXNS_ERES_V, object_name:GME_INV_TXNS_ERES_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: Supplementary view data based on union all of tables mtl_material_transacions and mtl_material_transactions_temp , implementation_dba_data: APPS.GME_INV_TXNS_ERES_V ,
-
VIEW: APPS.GME_INV_TXNS_POSTED_ERES_V
12.2.2
-
VIEW: APPS.GME_INV_TXNS_POSTED_ERES_V
12.1.1
-
View: GME_INV_TXNS_ERES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_INV_TXNS_ERES_V, object_name:GME_INV_TXNS_ERES_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: Supplementary view data based on union all of tables mtl_material_transacions and mtl_material_transactions_temp , implementation_dba_data: APPS.GME_INV_TXNS_ERES_V ,
-
View: GME_INV_TXNS_TEMP_ERES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_INV_TXNS_TEMP_ERES_V, object_name:GME_INV_TXNS_TEMP_ERES_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: Supplementary view data based on table mtl_material_transacions_temp. , implementation_dba_data: APPS.GME_INV_TXNS_TEMP_ERES_V ,
-
View: GME_INV_TXNS_TEMP_ERES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_INV_TXNS_TEMP_ERES_V, object_name:GME_INV_TXNS_TEMP_ERES_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: Supplementary view data based on table mtl_material_transacions_temp. , implementation_dba_data: APPS.GME_INV_TXNS_TEMP_ERES_V ,
-
VIEW: APPS.GME_INV_TXNS_TEMP_ERES_V
12.2.2
-
VIEW: APPS.GME_INV_TXNS_ERES_V
12.1.1
-
View: GME_INV_TXNS_POSTED_ERES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_INV_TXNS_POSTED_ERES_V, object_name:GME_INV_TXNS_POSTED_ERES_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: Supplementary view data based on table mtl_material_transacions , implementation_dba_data: APPS.GME_INV_TXNS_POSTED_ERES_V ,
-
View: GME_INV_TXNS_POSTED_ERES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_INV_TXNS_POSTED_ERES_V, object_name:GME_INV_TXNS_POSTED_ERES_V, status:VALID, product: GME - Process Manufacturing Process Execution , description: Supplementary view data based on table mtl_material_transacions , implementation_dba_data: APPS.GME_INV_TXNS_POSTED_ERES_V ,
-
VIEW: APPS.GME_INV_TXNS_TEMP_ERES_V
12.1.1
-
VIEW: APPS.GME_INV_TXNS_POSTED_ERES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_INV_TXNS_POSTED_ERES_V, object_name:GME_INV_TXNS_POSTED_ERES_V, status:VALID,
-
VIEW: APPS.GME_INV_TXNS_POSTED_ERES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_INV_TXNS_POSTED_ERES_V, object_name:GME_INV_TXNS_POSTED_ERES_V, status:VALID,
-
VIEW: APPS.GME_INV_TXNS_TEMP_ERES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_INV_TXNS_TEMP_ERES_V, object_name:GME_INV_TXNS_TEMP_ERES_V, status:VALID,
-
VIEW: APPS.GME_INV_TXNS_ERES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_INV_TXNS_ERES_V, object_name:GME_INV_TXNS_ERES_V, status:VALID,
-
VIEW: APPS.GME_INV_TXNS_ERES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_INV_TXNS_ERES_V, object_name:GME_INV_TXNS_ERES_V, status:VALID,
-
VIEW: APPS.GME_INV_TXNS_TEMP_ERES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GME.GME_INV_TXNS_TEMP_ERES_V, object_name:GME_INV_TXNS_TEMP_ERES_V, status:VALID,
-
eTRM - GME Tables and Views
12.1.1
description: PM Module Text Lines. Descriptive text for all tables in this module. ,
-
eTRM - GME Tables and Views
12.2.2
description: PM Module Text Lines. Descriptive text for all tables in this module. ,