Search Results commit_qty2
Overview
APPS.OP_TRAN_TMP_V is a reporting and integration view in Oracle EBS Release 12.1.1 and 12.2.2 that consolidates transaction staging data from the OP_TRAN_TMP table with on-hand inventory and lot status information. The view is owned by the APPS schema and is defined over three synonyms: OP_TRAN_TMP, IC_LOCT_INV, and IC_LOTS_STS. Its primary purpose is to present a summarized, availability-aware picture of inventory transactions as they relate to specific warehouse, item, lot, sublot, and locator combinations, scoped by a session identifier. It is closely associated with Oracle's inventory transaction manager and materials management modules, where staged transactions are assembled prior to validation and processing.
The view aggregates quantities at the lot and locator grain, applying sign conventions that invert committed and allocated quantities. Specifically, COMMIT_QTY is exposed as SUM(-COMMIT_QTY), meaning the stored staging value is negated when surfaced through the view. This same convention applies to COMMIT_QTY2, QTY1, and QTY2 (derived from ALLOC_QTY and ALLOC_QTY2).
Underlying Base Objects
The view is defined with the following FROM clause:
- OP_TRAN_TMP (SYNONYM) — the transaction staging table (aliased as T), which supplies session, item, warehouse, lot, locator, on-hand, commit, and allocation quantities.
- IC_LOCT_INV (SYNONYM) — the locator inventory table (aliased as I), which supplies lot status, nettable, shipping, and rejected indicators, joined on warehouse code, item, lot, and location.
- IC_LOTS_STS (SYNONYM) — the lot status table (aliased as L), joined with an outer join (+) on lot status from IC_LOCT_INV, providing lot status attributes.
The join conditions enforce EXPIRE_DATE >= SYSDATE, so only non-expired lot inventory is returned. The GROUP BY clause consolidates rows by session, item, warehouse, lot, lot creation data, expiry, grade, location, and status flags.
Key Columns
- SESSION_ID — identifier for the staging session that produced the transaction rows.
- ITEM_ID, WHSE_CODE, LOT_ID, LOT_NO, SUBLOT_NO, LOCATION — the inventory key at which quantities are summarized.
- ONHAND_QTY / ONHAND_QTY2 — sum of LOCT_ONHAND / LOCT_ONHAND2, i.e., current on-hand in the primary and secondary units of measure.
- COMMIT_QTY / COMMIT_QTY2 — sum of negated commit quantities; the value most directly relevant to the commit_qty search term.
- AVAIL_QTY / AVAIL_QTY2 — computed as on-hand plus commit quantity.
- QTY1 / QTY2 — derived from negated ALLOC_QTY / ALLOC_QTY2, with QTY2 returning NULL when allocation is zero.
- LOT_STATUS, NETTABLE_IND, SHIPPING_IND, REJECTED_IND — lot status and inventory eligibility flags.
- NUMB_TRANS_LINE — count of contributing transaction lines.
Common Use Cases and Queries
A typical query retrieves committed quantity for a given staging session or item:
- SELECT ITEM_ID, WHSE_CODE, LOT_NO, COMMIT_QTY, AVAIL_QTY FROM APPS.OP_TRAN_TMP_V WHERE SESSION_ID = :session_id;
- SELECT ITEM_ID, SUM(COMMIT_QTY) FROM APPS.OP_TRAN_TMP_V WHERE WHSE_CODE = :whse GROUP BY ITEM_ID;
- SELECT * FROM APPS.OP_TRAN_TMP_V WHERE COMMIT_QTY > 0 ORDER BY QTY1 DESC;
The view is used to reconcile reservation and commit activity during allocation, to verify available-to-promise quantities before picking, and to feed downstream integrations. The ORDER BY QTY1 DESC and HAVING clauses in the view definition ensure only rows with positive availability or allocation are returned.
-
VIEW: APPS.OP_TRAN_TMP_V
12.2.2
-
VIEW: APPS.OP_TRAN_TMP_V
12.1.1
-
VIEW: GMI.GMI_TRAN_TMP#
12.2.2
-
VIEW: GML.OP_TRAN_TMP#
12.2.2
-
View: OP_TRAN_TMP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.OP_TRAN_TMP_V, object_name:OP_TRAN_TMP_V, status:VALID, product: GML - Process Manufacturing Logistics , description: View to populate Pick Lots screen from shipment form , implementation_dba_data: APPS.OP_TRAN_TMP_V ,
-
View: OP_TRAN_TMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.OP_TRAN_TMP_V, object_name:OP_TRAN_TMP_V, status:VALID, product: GML - Process Manufacturing Logistics , description: View to populate Pick Lots screen from shipment form , implementation_dba_data: APPS.OP_TRAN_TMP_V ,
-
View: IC_ITEM_INV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_ITEM_INV_V, object_name:IC_ITEM_INV_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This is used in the OPM Allocation Engine in order to get the OnHand and Commit quantities for an item. , implementation_dba_data: APPS.IC_ITEM_INV_V ,
-
APPS.GML_AUTO_ALLOC SQL Statements
12.1.1
-
APPS.GML_AUTO_ALLOC SQL Statements
12.2.2
-
VIEW: GML.OP_TRAN_TMP#
12.2.2
owner:GML, object_type:VIEW, object_name:OP_TRAN_TMP#, status:VALID,
-
VIEW: GMI.GMI_TRAN_TMP#
12.2.2
owner:GMI, object_type:VIEW, object_name:GMI_TRAN_TMP#, status:VALID,
-
View: IC_ITEM_INV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_ITEM_INV_V, object_name:IC_ITEM_INV_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: This is used in the OPM Allocation Engine in order to get the OnHand and Commit quantities for an item. , implementation_dba_data: APPS.IC_ITEM_INV_V ,
-
VIEW: APPS.IC_ITEM_INV_V
12.2.2
-
VIEW: APPS.IC_ITEM_INV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_ITEM_INV_V, object_name:IC_ITEM_INV_V, status:VALID,
-
VIEW: APPS.IC_ITEM_INV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.IC_ITEM_INV_V, object_name:IC_ITEM_INV_V, status:VALID,
-
VIEW: APPS.OP_TRAN_TMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.OP_TRAN_TMP_V, object_name:OP_TRAN_TMP_V, status:VALID,
-
VIEW: APPS.IC_ITEM_INV_V
12.1.1
-
APPS.GMI_ALLOCATE_INVENTORY_PVT SQL Statements
12.1.1
-
APPS.GMI_ALLOCATE_INVENTORY_PVT SQL Statements
12.2.2
-
TABLE: GMI.GMI_TRAN_TMP
12.1.1
owner:GMI, object_type:TABLE, fnd_design_data:GMI.GMI_TRAN_TMP, object_name:GMI_TRAN_TMP, status:VALID,
-
VIEW: APPS.GMI_PICK_LOTS_V
12.1.1
-
VIEW: APPS.GMI_PICK_LOTS_V
12.2.2
-
TABLE: GMI.GMI_TRAN_TMP
12.2.2
owner:GMI, object_type:TABLE, fnd_design_data:GMI.GMI_TRAN_TMP, object_name:GMI_TRAN_TMP, status:VALID,
-
TABLE: GML.OP_TRAN_TMP
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_TRAN_TMP, object_name:OP_TRAN_TMP, status:VALID,
-
TABLE: GML.OP_TRAN_TMP
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_TRAN_TMP, object_name:OP_TRAN_TMP, status:VALID,
-
VIEW: APPS.OP_TRAN_TMP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.OP_TRAN_TMP_V, object_name:OP_TRAN_TMP_V, status:VALID,
-
PACKAGE BODY: APPS.GML_AUTO_ALLOC
12.2.2
-
View: GMI_PICK_LOTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_PICK_LOTS_V, object_name:GMI_PICK_LOTS_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: View to populate pick lots screen from shipment form , implementation_dba_data: APPS.GMI_PICK_LOTS_V ,
-
View: GMI_PICK_LOTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMI.GMI_PICK_LOTS_V, object_name:GMI_PICK_LOTS_V, status:VALID, product: GMI - Process Manufacturing Inventory , description: View to populate pick lots screen from shipment form , implementation_dba_data: APPS.GMI_PICK_LOTS_V ,
-
PACKAGE BODY: APPS.GML_AUTO_ALLOC
12.1.1
-
PACKAGE BODY: APPS.GMI_ALLOCATE_INVENTORY_PVT
12.1.1
-
PACKAGE BODY: APPS.GMI_ALLOCATE_INVENTORY_PVT
12.2.2
-
APPS.GML_AUTO_ALLOC dependencies on OP_TRAN_TMP
12.1.1
-
APPS.GML_AUTO_ALLOC dependencies on OP_TRAN_TMP
12.2.2
-
APPS.GMI_ALLOCATE_INVENTORY_PVT dependencies on GMI_RESERVATION_UTIL
12.1.1
-
APPS.GMI_ALLOCATE_INVENTORY_PVT dependencies on GMI_RESERVATION_UTIL
12.2.2
-
eTRM - GMI Tables and Views
12.1.1
description: Table used to relate Item ID with Roles. If the Item ID is NULL, then Roles will be associated with the warehouse Item ID. This table will be used by the Lot Expiry/Retest Workflow. ,
-
eTRM - GMI Tables and Views
12.2.2
description: Table used to relate Item ID with Roles. If the Item ID is NULL, then Roles will be associated with the warehouse Item ID. This table will be used by the Lot Expiry/Retest Workflow. ,
-
eTRM - GML Tables and Views
12.2.2
description: Tax reporting classes. ,
-
eTRM - GML Tables and Views
12.1.1
description: Tax reporting classes. ,