Search Results txn_quantity
Overview
RLM_CUST_ITEM_CUM_DETAILS_V is a reporting view owned by the APPS schema in Oracle E-Business Suite Release Management (RLM). It presents a consolidated, transaction-level ledger of customer item cumulative (CUM) activity, combining cumulative adjustments entered manually with shipment-driven cumulative movements. The view is defined as a UNION of two logically distinct transaction streams and classifies each row through a literal discriminator column, TXN_TYPE. This column is the object's defining feature: it takes the value ADJUSTMENT for cumulative adjustment records and SHIPMENT for customer item shipment lines, allowing downstream reports and integrations to consume a single homogeneous result set while still distinguishing the source and nature of each movement.
The view exists in both 12.1.1 and 12.2.2; in 12.2.2 the documented base objects are unchanged, confirming stability of the interface across the upgrade boundary. Its principal role is to support cumulative quantity tracking against customer items — quantities shipped to, adjusted for, or consumed at a customer location — which is essential in environments operating customer-owned or consignment inventory, vendor-managed inventory arrangements, and cumulative-based billing agreements where amounts invoiced depend on net cumulative movement rather than discrete orders.
Underlying Base Objects
The view is defined over the following documented objects:
- RLM_CUST_ITEM_CUM_ADJ_ALL — cumulative adjustment records; supplies the ADJUSTMENT branch of the UNION.
- RLM_CUST_ITEM_CUM_KEYS — the cumulative key master, joining organizations to customer item cumulative definitions.
- OE_ORDER_LINES_ALL — order lines providing shipment activity, shipment numbers, and shipped quantities for the SHIPMENT branch.
- ORG_ORGANIZATION_DEFINITIONS — resolves ship-from organization identifiers to organization codes and names.
- HZ_CUST_SITE_USES_ALL — supplies ship-to, deliver-to, and bill-to site locations.
- FND_USER — resolves the last updated (adjustment) or last shipped user to a user name.
- HR_GENERAL / HR_SECURITY — packaged functions used for organization security filtering.
In the ADJUSTMENT branch, the view joins organization definitions and cumulative keys, then links to adjustment rows through CUM_KEY_ID, and finally to FND_USER. In the SHIPMENT branch, order lines are keyed to the cumulative key, with organization, site use, and user lookups applied for descriptive context.
Key Columns
- TXN_TYPE — literal discriminator; values are ADJUSTMENT or SHIPMENT. Primary filter for most reporting queries.
- CUM_KEY_ID / VEH_CUS_ITEM_CUM_KEY_ID — cumulative key identifier linking the row to the customer item cumulative definition.
- SHIP_FROM, SHIP_TO, DELIVER_TO, BILL_TO — organization code and site locations; NULL for adjustment rows.
- TXN_DATE — transaction date/time; adjustment transaction date or actual shipment date.
- TXN_QUANTITY, QUANTITY_UOM — the movement quantity and its unit of measure.
- SHIPMENT_NUMBER — populated only for shipment rows.
- LAST_ADJUSTED_BY / LAST_SHIPPED_BY — user names from FND_USER, mutually exclusive by TXN_TYPE.
- ADJUSTMENT_REASON / ADJUSTMENT_REFERENCE — adjustment-specific descriptive fields.
- ATTRIBUTE1–15, TP_ATTRIBUTE1–15 — descriptive flexfield segments, sourced from the adjustment records.
- Standard WHO columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_ID, PROGRAM_APPLICATION_ID.
Common Use Cases and Queries
Typical uses include cumulative balance reconciliation, adjustment audit reporting, shipment-versus-adjustment variance analysis, and feeds into billing or customer-portal extracts. A common pattern filters on TXN_TYPE to isolate a single stream:
- Adjustment audit: SELECT cum_key_id, txn_date, txn_quantity, adjustment_reason, last_adjusted_by FROM rlm_cust_item_cum_details_v WHERE txn_type = 'ADJUSTMENT' ORDER BY txn_date DESC;
- Shipment history for a cumulative key: SELECT shipment_number, txn_date, txn_quantity, quantity_uom, ship_to FROM rlm_cust_item_cum_details_v WHERE txn_type = 'SHIPMENT' AND cum_key_id = :cum_key_id;
- Net cumulative movement: SELECT cum_key_id, txn_type, SUM(txn_quantity) FROM rlm_cust_item_cum_details_v GROUP BY cum_key_id, txn_type;
Because the view performs organization security filtering through HR_SECURITY, query results are naturally restricted to the organizations accessible to the operating user, making it suitable for concurrent-program-based extracts and BI Publisher reports without additional security predicates.
-
View: RLM_CUST_ITEM_CUM_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_CUST_ITEM_CUM_DETAILS_V, object_name:RLM_CUST_ITEM_CUM_DETAILS_V, status:VALID, product: RLM - Release Management , implementation_dba_data: APPS.RLM_CUST_ITEM_CUM_DETAILS_V ,
-
VIEW: APPS.RLM_CUM_ADJ_DETAILS_V
12.2.2
-
View: RLM_CUST_ITEM_CUM_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_CUST_ITEM_CUM_DETAILS_V, object_name:RLM_CUST_ITEM_CUM_DETAILS_V, status:VALID, product: RLM - Release Management , implementation_dba_data: APPS.RLM_CUST_ITEM_CUM_DETAILS_V ,
-
PACKAGE: APPS.PJM_UEFF_ONHAND
12.2.2
-
VIEW: APPS.RLM_CUST_ITEM_CUM_DETAILS_V
12.1.1
-
PACKAGE: APPS.PJM_UEFF_ONHAND
12.1.1
-
View: RLM_CUM_SHIP_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_CUM_SHIP_DETAILS_V, object_name:RLM_CUM_SHIP_DETAILS_V, status:VALID, product: RLM - Release Management , implementation_dba_data: APPS.RLM_CUM_SHIP_DETAILS_V ,
-
View: RLM_CUM_ADJ_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_CUM_ADJ_DETAILS_V, object_name:RLM_CUM_ADJ_DETAILS_V, status:VALID, product: RLM - Release Management , implementation_dba_data: APPS.RLM_CUM_ADJ_DETAILS_V ,
-
View: RLM_CUM_ADJ_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_CUM_ADJ_DETAILS_V, object_name:RLM_CUM_ADJ_DETAILS_V, status:VALID, product: RLM - Release Management , implementation_dba_data: APPS.RLM_CUM_ADJ_DETAILS_V ,
-
VIEW: APPS.RLM_CUST_ITEM_CUM_DETAILS_V
12.2.2
-
View: RLM_CUM_SHIP_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_CUM_SHIP_DETAILS_V, object_name:RLM_CUM_SHIP_DETAILS_V, status:VALID, product: RLM - Release Management , implementation_dba_data: APPS.RLM_CUM_SHIP_DETAILS_V ,
-
VIEW: APPS.RLM_CUM_ADJ_DETAILS_V
12.1.1
-
VIEW: APPS.RLM_CUST_ITEM_CUM_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_CUST_ITEM_CUM_DETAILS_V, object_name:RLM_CUST_ITEM_CUM_DETAILS_V, status:VALID,
-
VIEW: APPS.RLM_CUM_SHIP_DETAILS_V
12.1.1
-
VIEW: APPS.RLM_CUM_SHIP_DETAILS_V
12.2.2
-
VIEW: APPS.RLM_CUM_ADJ_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_CUM_ADJ_DETAILS_V, object_name:RLM_CUM_ADJ_DETAILS_V, status:VALID,
-
VIEW: APPS.RLM_CUST_ITEM_CUM_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_CUST_ITEM_CUM_DETAILS_V, object_name:RLM_CUST_ITEM_CUM_DETAILS_V, status:VALID,
-
VIEW: APPS.RLM_CUM_SHIP_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_CUM_SHIP_DETAILS_V, object_name:RLM_CUM_SHIP_DETAILS_V, status:VALID,
-
VIEW: APPS.RLM_CUM_ADJ_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_CUM_ADJ_DETAILS_V, object_name:RLM_CUM_ADJ_DETAILS_V, status:VALID,
-
VIEW: APPS.RLM_CUM_SHIP_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_CUM_SHIP_DETAILS_V, object_name:RLM_CUM_SHIP_DETAILS_V, status:VALID,
-
PACKAGE BODY: APPS.PJM_UEFF_ONHAND
12.2.2
-
PACKAGE BODY: APPS.PJM_UEFF_ONHAND
12.1.1
-
APPS.PA_ACCUM_SRW SQL Statements
12.2.2
-
PACKAGE: APPS.WIP_WS_CUSTOM
12.1.1
-
APPS.PA_ACCUM_SRW SQL Statements
12.1.1
-
PACKAGE BODY: APPS.WIP_WS_CUSTOM
12.1.1
-
APPS.PJM_MASS_TRANSFER_PUB SQL Statements
12.2.2
-
APPS.PJM_MASS_TRANSFER_PUB SQL Statements
12.1.1
-
PACKAGE: APPS.WIP_WS_CUSTOM
12.2.2
-
PACKAGE BODY: APPS.WIP_WS_CUSTOM
12.2.2
-
PACKAGE BODY: APPS.INV_CR_ASN_DETAILS
12.1.1
-
PACKAGE BODY: APPS.INV_CR_ASN_DETAILS
12.2.2
-
APPS.CSD_RETURNS_BI_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.INV_RCV_STD_RCPT_APIS
12.2.2
-
PACKAGE BODY: APPS.INV_RCV_STD_RCPT_APIS
12.1.1
-
PACKAGE: APPS.AHL_COMPLETIONS_PVT
12.1.1
-
PACKAGE BODY: APPS.AHL_COMPLETIONS_PVT_W
12.1.1
-
PACKAGE: APPS.AHL_COMPLETIONS_PVT
12.2.2
-
APPS.INV_CR_ASN_DETAILS dependencies on STANDARD
12.2.2
-
PACKAGE: APPS.GML_RCV_STD_RCPT_APIS
12.1.1
-
PACKAGE: APPS.GML_RCV_STD_RCPT_APIS
12.2.2
-
APPS.INV_CR_ASN_DETAILS dependencies on STANDARD
12.1.1
-
PACKAGE BODY: APPS.AHL_COMPLETIONS_PVT_W
12.2.2
-
PACKAGE BODY: APPS.CSD_RETURNS_BI_PVT
12.2.2
-
APPS.AHL_COMPLETIONS_PVT dependencies on MTL_LOT_NUMBERS
12.1.1
-
APPS.AHL_COMPLETIONS_PVT dependencies on MTL_LOT_NUMBERS
12.2.2
-
APPS.PJM_MASS_TRANSFER_PUB dependencies on MTL_ITEM_LOCATIONS
12.1.1
-
APPS.PJM_MASS_TRANSFER_PUB dependencies on MTL_ITEM_LOCATIONS
12.2.2
-
APPS.PJM_MASS_TRANSFER_PUB dependencies on MTL_ONHAND_QUANTITIES_DETAIL
12.2.2
-
PACKAGE BODY: APPS.PJM_MASS_TRANSFER_PUB
12.1.1