Search Results rlm_cust_item_cum_keys
Overview
The view APPS.RLM_CUM_SHIPFR_CUST_ITEMS_V is a reporting and integration object within the Oracle E-Business Suite (EBS) Release 12.1.1 and 12.2.2 environments. It exposes customer item definitions that are eligible for cumulative shipment processing, filtered to only those customer item and ship-to address combinations that have been registered as cumulative keys. The view is primarily significant to Oracle's Return Material Authorization and logistics flows, where cumulative shipment tracking against customer items, ship-to addresses, and dates is required for contract compliance, pricing, or consignment reconciliation.
Functionally, the view answers the question: "Which active customer items have valid cumulative tracking keys defined?" This makes it a convenient data source for reports, concurrent programs, and integration interfaces that must resolve valid customer-item/ship-to combinations without performing the multi-table join themselves. The view presents each qualifying customer item once per matching CUSTOMER_ITEM_ID, resolving the address match through an EXISTS subquery against RLM_CUST_ITEM_CUM_KEYS.
Underlying Base Objects
According to the ETRM 12.2.2 metadata, the view is defined over two documented objects, both referenced through APPS synonyms:
MTL_CUSTOMER_ITEMS— the base table supplying customer item attributes. This is the driving table in the FROM clause (aliased MTL).RLM_CUST_ITEM_CUM_KEYS— the cumulative keys table referenced in the correlatedEXISTSsubquery. This table stores the customer item / ship-to address combinations that participate in cumulative shipment processing.
The join condition links RLM_CUST_ITEM_CUM_KEYS.CUSTOMER_ITEM_ID to MTL_CUSTOMER_ITEMS.CUSTOMER_ITEM_ID. The address matching logic is expressed as:
SHIP_TO_ADDRESS_ID = NVL(MTL.ADDRESS_ID, SHIP_TO_ADDRESS_ID) OR SHIP_TO_ADDRESS_ID IS NULL
This permits a cumulative key with a NULL ship-to address to act as a wildcard matching any address on the customer item, while a populated ship-to address must match the item's ADDRESS_ID. Only rows where MTL.INACTIVE_FLAG = 'N' are returned, excluding inactive customer items.
Key Columns
CUSTOMER_ITEM_ID— Primary surrogate key of the customer item; also the join key to the cumulative keys table.CUSTOMER_ID— Identifies the customer that owns the item definition.CUSTOMER_ITEM_NUMBER/CUSTOMER_ITEM_DESC— The customer's part number and description.ADDRESS_ID— Ship-to address associated with the customer item; used in the NVL comparison againstSHIP_TO_ADDRESS_ID.ITEM_DEFINITION_LEVEL— Indicates the scope at which the customer item is defined (for example, customer-level versus address-level).CUSTOMER_CATEGORY_CODE— Category classification for the customer item.INACTIVE_FLAG— Not projected, but used as a filter; only active items are returned.- Audit columns (
LAST_UPDATE_DATE,LAST_UPDATED_BY,CREATION_DATE,CREATED_BY,LAST_UPDATE_LOGIN,REQUEST_ID,PROGRAM_APPLICATION_ID,PROGRAM_ID,PROGRAM_UPDATE_DATE) — Standard EBS who-columns and concurrent program context.
Common Use Cases and Queries
Typical uses include validating customer items against cumulative key setup, driving shipment or RMA reports, and populating LOVs. A representative query listing active items for a given customer is:
SELECT customer_item_id, customer_item_number, address_id, customer_category_code
FROM apps.rlm_cum_shipfr_cust_items_v
WHERE customer_id = :p_customer_id;
To find items covered by a wildcard cumulative key (NULL ship-to), filter on rows whose cumulative key has a null ship-to address via the underlying table:
SELECT v.customer_item_id, v.customer_item_number
FROM apps.rlm_cum_shipfr_cust_items_v v
WHERE EXISTS (SELECT 1 FROM apps.rlm_cust_item_cum_keys k
WHERE k.customer_item_id = v.customer_item_id
AND k.ship_to_address_id IS NULL);
Because the view already enforces cleanliness rules, it is generally preferable to query it directly rather than reconstructing the underlying joins.
-
VIEW: APPS.RLM_CUM_SHIPFR_CUST_ITEMS_V
12.2.2
-
VIEW: APPS.RLM_CUST_ITEM_CUM_KEYS_V
12.2.2
-
VIEW: APPS.RLM_CUST_ITEM_CUM_DETAILS_V
12.1.1
-
VIEW: APPS.RLM_CUM_ADJ_DETAILS_V
12.2.2
-
VIEW: APPS.RLM_CUM_SHIPFR_CUST_ITEMS_V
12.1.1
-
VIEW: APPS.RLM_CUST_ITEM_CUM_ADJ_V
12.1.1
-
VIEW: APPS.RLM_CUST_ITEM_CUM_ADJ_V
12.2.2
-
VIEW: APPS.RLM_CUST_ITEM_CUM_KEYS_V
12.1.1
-
VIEW: APPS.RLM_CUST_ITEM_CUM_DETAILS_V
12.2.2
-
APPS.RLM_RLMDMSIQ_XMLP_PKG SQL Statements
12.2.2
-
VIEW: APPS.RLM_CUM_ADJ_DETAILS_V
12.1.1
-
VIEW: APPS.RLM_SCHEDULE_LINE_CUM_V
12.2.2
-
VIEW: APPS.RLM_SCHEDULE_LINE_CUM_V
12.1.1
-
eTRM - RLM Tables and Views
12.2.2
description: This table stores the details of Query Criteria for each of the Query in RLM_UI_QUERIES ,
-
VIEW: APPS.RLM_CUM_SHIP_DETAILS_V
12.2.2
-
VIEW: APPS.RLM_CUM_SHIP_DETAILS_V
12.1.1
-
12.1.1 DBA Data
12.1.1
-
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 ,
-
eTRM - RLM Tables and Views
12.1.1
description: This table stores the details of Query Criteria for each of the Query in RLM_UI_QUERIES ,
-
APPS.RLM_RLMDMSIQ_XMLP_PKG SQL Statements
12.1.1
-
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 ,
-
PACKAGE BODY: APPS.RLM_RLMDMSIQ_XMLP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:RLM_RLMDMSIQ_XMLP_PKG, status:VALID,
-
PACKAGE BODY: APPS.RLM_RLMDMSIQ_XMLP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RLM_RLMDMSIQ_XMLP_PKG, status:VALID,
-
SYNONYM: APPS.RLM_CUST_ITEM_CUM_KEYS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RLM_CUST_ITEM_CUM_KEYS, status:VALID,
-
PACKAGE BODY: APPS.RLM_RLMNETCH_XMLP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:RLM_RLMNETCH_XMLP_PKG, status:VALID,
-
PACKAGE BODY: APPS.RLM_CUST_MERGE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RLM_CUST_MERGE, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: APPS.RLM_CUM_SV
12.1.1
owner:APPS, object_type:PACKAGE, object_name:RLM_CUM_SV, status:VALID,
-
PACKAGE: APPS.RLM_CUM_SV
12.2.2
owner:APPS, object_type:PACKAGE, object_name:RLM_CUM_SV, status:VALID,
-
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_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_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 ,
-
APPS.RLM_CUM_SV SQL Statements
12.1.1
-
PACKAGE BODY: APPS.RLM_RLMNETCH_XMLP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RLM_RLMNETCH_XMLP_PKG, status:VALID,
-
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 ,
-
SYNONYM: APPS.RLM_CUST_ITEM_CUM_KEYS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RLM_CUST_ITEM_CUM_KEYS, status:VALID,
-
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 ,
-
PACKAGE BODY: APPS.RLM_CUST_MERGE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:RLM_CUST_MERGE, status:VALID,
-
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 ,
-
PACKAGE BODY: APPS.RLM_CUM_SV
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RLM_CUM_SV, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
PACKAGE BODY: APPS.WSH_DOCUMENT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_DOCUMENT_PVT, status:VALID,
-
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 ,
-
PACKAGE BODY: APPS.WSH_DOCUMENT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WSH_DOCUMENT_PVT, status:VALID,