Search Results rlm_cust_item_cum_keys
Overview
RLM_CUST_ITEM_CUM_ADJ_ALL is a transactional table in the Oracle E-Business Suite Release Management (RLM) module. It stores adjustments to the cumulative (CUM) quantities maintained for RLM customer destination items. CUM quantities represent the running total of shipped quantities that drive repetitive manufacturing and scheduling logic in an RLM-managed supply chain. This table captures manual CUM adjustments entered through a Release Management form, preserving a distinct audit trail separate from system-generated cumulative movements.
The table is owned by the RLM schema and is documented as VALID under both Oracle EBS 12.1.1 and 12.2.2. It holds 48 columns in the documented physical schema. The metadata identifies a child relationship to RLM_CUST_ITEM_CUM_KEYS_ALL via the CUM_KEY_ID foreign key, meaning each adjustment is anchored to a specific customer item CUM key record. The heuristic Data Vault classification mined from the FK structure is "standalone," meaning the table sits as a self-contained adjustment ledger rather than functioning as a pure hub, link, or satellite. In modeling terms, it is best understood as a transactional event table (or an effectivity/transaction satellite) attached to the customer item CUM key hub, where CUM_KEY_ID acts as the business anchor and CUM_ADJ_ID acts as the surrogate identifier for each adjustment event.
Key Information Stored
The table's most significant columns fall into identifier, adjustment payload, contextual, and audit categories.
- CUM_ADJ_ID — Surrogate primary key (CUM_ADJ_ID_PK). Uniquely identifies each manual CUM adjustment record.
- CUM_KEY_ID — Foreign key to RLM_CUST_ITEM_CUM_KEYS_ALL. Links the adjustment to the customer destination item CUM key, making it the principal business-key join column.
- TRANSACTION_QTY — The quantity of the adjustment applied to the CUM. This is the core numeric payload of the record.
- TRANSACTION_DATE_TIME — Effective timestamp of the adjustment event.
- ADJUSTMENT_REASON — Free-text or coded explanation for why the CUM was adjusted, essential for audit and reconciliation.
- ADJUSTMENT_REFERENCE — External or internal reference document associated with the adjustment.
- ORG_ID — Operating unit (multi-org) identifier, enabling partition-aware reporting across organizations.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — Concurrent program audit columns identifying the background process that inserted or updated the row.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard EBS "Who" columns capturing user and timestamp audit information.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — Descriptive flexfield (DFF) segments for client-specific extension.
- TP_ATTRIBUTE_CATEGORY and TP_ATTRIBUTE1–TP_ATTRIBUTE15 — Additional attribute columns, typically used for trading-partner or template-specific extension data.
Common Use Cases and Queries
Typical use cases center on CUM reconciliation, audit reporting, and discrepancy investigation between system-calculated and manually-adjusted cumulative quantities.
- Listing all manual adjustments for a given customer item CUM key within a date range.
- Summing adjustments per CUM key to reconcile the net manual impact on cumulative quantity.
- Auditing who performed adjustments and under what reason for compliance.
- Reporting by operating unit for multi-org visibility.
Sample query:
SELECT a.cum_adj_id, a.cum_key_id, a.transaction_qty, a.transaction_date_time, a.adjustment_reason, a.org_id FROM rlm.rlm_cust_item_cum_adj_all a WHERE a.cum_key_id = :cum_key_id AND a.transaction_date_time BETWEEN :start_dt AND :end_dt ORDER BY a.transaction_date_time;
A reconciliation aggregate:
SELECT cum_key_id, SUM(transaction_qty) net_adjustment FROM rlm.rlm_cust_item_cum_adj_all GROUP BY cum_key_id;
Related Objects
- RLM_CUST_ITEM_CUM_KEYS_ALL — Parent table; joined on RLM_CUST_ITEM_CUM_ADJ_ALL.CUM_KEY_ID = RLM_CUST_ITEM_CUM_KEYS_ALL.CUM_KEY_ID. This is the documented FK relationship.
- RLM_CUST_ITEM_CUM_KEYS — Referenced as the child-relationship parent in the metadata description; the CUM key definition driving adjustments.
- RLM customer item / destination item tables — Provide item and destination context linked through the CUM key.
- Release Management adjustment form — The UI entry point that creates records in this table.
- Concurrent program request metadata — Via REQUEST_ID and PROGRAM_ID for process lineage.
- RLM CUM transaction tables — System-generated CUM movements compared against these manual adjustments during reconciliation.
-
Table: RLM_CUST_ITEM_CUM_ADJ_ALL
12.2.2
owner:RLM, object_type:TABLE, fnd_design_data:RLM.RLM_CUST_ITEM_CUM_ADJ_ALL, object_name:RLM_CUST_ITEM_CUM_ADJ_ALL, status:VALID, product: RLM - Release Management , description: This table stores adjustments to the cum for all RLM customer destination items. It has a child relationship to RLM_CUST_ITEM_CUM_KEYS. The adjustments reflect manual CUM adjustment via a form in the Release Management module.If CUM Manag , implementation_dba_data: RLM.RLM_CUST_ITEM_CUM_ADJ_ALL ,
-
Table: RLM_CUST_ITEM_CUM_ADJ_ALL
12.1.1
owner:RLM, object_type:TABLE, fnd_design_data:RLM.RLM_CUST_ITEM_CUM_ADJ_ALL, object_name:RLM_CUST_ITEM_CUM_ADJ_ALL, status:VALID, product: RLM - Release Management , description: This table stores adjustments to the cum for all RLM customer destination items. It has a child relationship to RLM_CUST_ITEM_CUM_KEYS. The adjustments reflect manual CUM adjustment via a form in the Release Management module.If CUM Manag , implementation_dba_data: RLM.RLM_CUST_ITEM_CUM_ADJ_ALL ,
-
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: RLM_CUM_SHIPFR_CUST_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_CUM_SHIPFR_CUST_ITEMS_V, object_name:RLM_CUM_SHIPFR_CUST_ITEMS_V, status:VALID, product: RLM - Release Management , implementation_dba_data: APPS.RLM_CUM_SHIPFR_CUST_ITEMS_V ,
-
View: RLM_SCHEDULE_LINE_CUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_SCHEDULE_LINE_CUM_V, object_name:RLM_SCHEDULE_LINE_CUM_V, status:VALID, product: RLM - Release Management , implementation_dba_data: APPS.RLM_SCHEDULE_LINE_CUM_V ,
-
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 ,
-
View: RLM_SCHEDULE_LINE_CUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_SCHEDULE_LINE_CUM_V, object_name:RLM_SCHEDULE_LINE_CUM_V, status:VALID, product: RLM - Release Management , implementation_dba_data: APPS.RLM_SCHEDULE_LINE_CUM_V ,
-
View: RLM_CUM_SHIPFR_CUST_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_CUM_SHIPFR_CUST_ITEMS_V, object_name:RLM_CUM_SHIPFR_CUST_ITEMS_V, status:VALID, product: RLM - Release Management , implementation_dba_data: APPS.RLM_CUM_SHIPFR_CUST_ITEMS_V ,
-
View: RLM_CUST_ITEM_CUM_ADJ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_CUST_ITEM_CUM_ADJ_V, object_name:RLM_CUST_ITEM_CUM_ADJ_V, status:VALID, product: RLM - Release Management , implementation_dba_data: APPS.RLM_CUST_ITEM_CUM_ADJ_V ,
-
View: RLM_CUST_ITEM_CUM_ADJ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_CUST_ITEM_CUM_ADJ_V, object_name:RLM_CUST_ITEM_CUM_ADJ_V, status:VALID, product: RLM - Release Management , implementation_dba_data: APPS.RLM_CUST_ITEM_CUM_ADJ_V ,
-
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.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: RLM_CUST_ITEM_CUM_KEYS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_CUST_ITEM_CUM_KEYS_V, object_name:RLM_CUST_ITEM_CUM_KEYS_V, status:VALID, product: RLM - Release Management , implementation_dba_data: APPS.RLM_CUST_ITEM_CUM_KEYS_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_CUST_ITEM_CUM_KEYS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:RLM.RLM_CUST_ITEM_CUM_KEYS_V, object_name:RLM_CUST_ITEM_CUM_KEYS_V, status:VALID, product: RLM - Release Management , implementation_dba_data: APPS.RLM_CUST_ITEM_CUM_KEYS_V ,
-
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 ,