Search Results cum_start_date
Overview
APPS.RLM_SCHEDULE_LINE_CUM_V is a reporting and integration view in Oracle E-Business Suite Release 12.1.1 and 12.2.2 that exposes cumulative (CUM) schedule line information maintained by Oracle's Enterprise Territory and Channel Revenue Management / supplier scheduling data model (RLM schema). The view consolidates cumulative quantities, cumulative start dates, and the associated customer/item cumulative key context into a single denormalized result set, which is why it is frequently targeted by custom reports, extracts, and outbound interfaces that need to reconcile scheduled releases against cumulative balances.
The view preserves the ORG_ID (operating unit) column, making it multi-org aware, and it derives the cumulative window by matching a CUM-type schedule line (item_detail_type = '4' with item_detail_subtype = 'CUM') against a corresponding detail line (item_detail_type = '3') on the same header and schedule item number. The view also filters to the maximum cumulative quantity found for the matching item and CUM key, effectively returning the active/highest cumulative position rather than intermediate snapshots.
Underlying Base Objects
The view is defined over four aliased instances of three documented base objects, all exposed in the APPS schema as synonyms:
- RLM_SCHEDULE_LINES_ALL — used three times (aliases
a,dand, within the correlated subquery,a1andd1). Aliasasupplies the detail line attributed quantities; aliasdsupplies the CUM line whose start date equals the cumulative key start date. - RLM_CUST_ITEM_CUM_KEYS — alias
b(andb1in the subquery). Holds the cumulative key definition, includingCUM_KEY_ID,cum_start_dateand the fallback dimensions matched against the scheduled lines. - RLM_SCHEDULE_HEADERS_ALL — alias
c(andc1). Supplies the header context and thesched_generation_dateused to validate that the schedule generation is on or after the CUM start date.
Joins are enforced on ORG_ID across all four line/header instances and on customer_item_id, ship_from_org_id, ship_to_address_id, bill_to_address_id, intrmd_ship_to_id, cust_po_number, and industry_attribute1. NVL-based joins allow a CUM key with a null dimension to match any scheduled line value.
Key Columns
- CUM_START_DATE — start date/time of the cumulative period, taken from the matching CUM line.
- CUM_KEY_ID — identifier of the customer item cumulative key driving the match.
- SCHEDULE_REFERENCE_NUM — schedule reference from the header record.
- ITEM_DETAIL_SUBTYPE / ITEM_DETAIL_TYPE — line classification;
'CUM'subtype denotes the cumulative record. - DATE_TYPE_CODE, START_DATE_TIME, END_DATE_TIME — the effective window of the detail line.
- QTY_TYPE_CODE, ITEM_DETAIL_QUANTITY, UOM_CODE — the quantity semantics and value that the CUM line represents.
- SHIP_FROM_ORG_ID, SHIP_TO_ORG_ID, CUSTOMER_ITEM_ID, ORG_ID — the dimensional context, including operating unit.
Although not projected, CUST_PO_NUMBER from RLM_SCHEDULE_LINES_ALL participates directly in the join predicate: nvl(a.cust_po_number,0) = nvl(b.purchase_order_number, nvl(a.cust_po_number,0)). Users searching on "cust_po_number" will therefore find this view governs CUM matching by customer PO, even though the column itself is not exposed in the SELECT list.
Common Use Cases and Queries
Typical uses include reconciling cumulative quantities per customer PO before processing a release, feeding external planning systems, and diagnosing mismatches where a CUM key does not tie to a detail line.
Sample query returning cumulative positions for a customer item:
SELECT cum_key_id, cum_start_date, schedule_reference_num,
item_detail_quantity, uom_code, org_id
FROM apps.rlm_schedule_line_cum_v
WHERE customer_item_id = :p_customer_item_id
AND org_id = :p_org_id;
To trace lines by customer PO indirectly, join back to RLM_SCHEDULE_LINES_ALL on CUM_KEY_ID-related keys, since cust_po_number is not projected by the view. Because the view applies a MAX-quantity correlated subquery, it returns a single dominant cumulative record per item/CUM key combination, making it well suited to dashboards and interface extracts that require one authoritative cumulative balance rather than the full history.
-
VIEW: APPS.RLM_SCHEDULE_LINE_CUM_V
12.1.1
-
VIEW: APPS.RLM_SCHEDULE_LINE_CUM_V
12.2.2
-
VIEW: RLM.RLM_CUST_ITEM_CUM_KEYS_ALL#
12.2.2
-
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 ,
-
APPS.RLM_CUM_SV SQL Statements
12.1.1
-
APPS.RLM_CUM_SV SQL Statements
12.2.2
-
VIEW: APPS.WSH_OPSM_ASN_ITEMS_SPECIFIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OPSM_ASN_ITEMS_SPECIFIC_V, object_name:WSH_OPSM_ASN_ITEMS_SPECIFIC_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,
-
VIEW: APPS.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,
-
VIEW: APPS.WSH_OPSM_ASN_ITEMS_SPECIFIC_V
12.2.2
-
PACKAGE BODY: APPS.RLM_RLMNETCH_XMLP_PKG
12.2.2
-
PACKAGE BODY: APPS.RLM_RLMNETCH_XMLP_PKG
12.1.1
-
VIEW: APPS.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,
-
VIEW: RLM.RLM_CUST_ITEM_CUM_KEYS_ALL#
12.2.2
owner:RLM, object_type:VIEW, object_name:RLM_CUST_ITEM_CUM_KEYS_ALL#, status:VALID,
-
VIEW: APPS.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,
-
View: WSH_OPSM_ASN_ITEMS_SPECIFIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OPSM_ASN_ITEMS_SPECIFIC_V, object_name:WSH_OPSM_ASN_ITEMS_SPECIFIC_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_OPSM_ASN_ITEMS_SPECIFIC_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_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: WSH_DSNO_ITEMS_SPECIFIC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEMS_SPECIFIC_V, object_name:WSH_DSNO_ITEMS_SPECIFIC_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ITEMS_SPECIFIC_V ,
-
TABLE: RLM.RLM_CUST_ITEM_CUM_KEYS_ALL
12.2.2
owner:RLM, object_type:TABLE, fnd_design_data:RLM.RLM_CUST_ITEM_CUM_KEYS_ALL, object_name:RLM_CUST_ITEM_CUM_KEYS_ALL, status:VALID,
-
TABLE: RLM.RLM_CUST_ITEM_CUM_KEYS_ALL
12.1.1
owner:RLM, object_type:TABLE, fnd_design_data:RLM.RLM_CUST_ITEM_CUM_KEYS_ALL, object_name:RLM_CUST_ITEM_CUM_KEYS_ALL, status:VALID,
-
View: WSH_DSNO_ITEMS_SPECIFIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEMS_SPECIFIC_V, object_name:WSH_DSNO_ITEMS_SPECIFIC_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ITEMS_SPECIFIC_V ,
-
VIEW: APPS.WSH_DSNO_ITEMS_SPECIFIC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEMS_SPECIFIC_V, object_name:WSH_DSNO_ITEMS_SPECIFIC_V, status:VALID,
-
VIEW: APPS.WSH_DSNO_ITEMS_SPECIFIC_V
12.1.1
-
VIEW: APPS.WSH_DSNO_ITEMS_SPECIFIC_V
12.2.2
-
PACKAGE BODY: APPS.RLM_CUM_SV
12.2.2
-
VIEW: APPS.WSH_DSNO_ITEMS_SPECIFIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEMS_SPECIFIC_V, object_name:WSH_DSNO_ITEMS_SPECIFIC_V, status:VALID,
-
PACKAGE BODY: APPS.RLM_CUM_SV
12.1.1
-
APPS.RLM_RLMDMSIQ_XMLP_PKG SQL Statements
12.2.2
-
APPS.RLM_RLMDMSIQ_XMLP_PKG SQL Statements
12.1.1
-
VIEW: APPS.WSH_DSNO_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEMS_V, object_name:WSH_DSNO_ITEMS_V, status:VALID,
-
VIEW: APPS.WSH_DSNO_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEMS_V, object_name:WSH_DSNO_ITEMS_V, status:VALID,
-
View: WSH_DSNO_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEMS_V, object_name:WSH_DSNO_ITEMS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ITEMS_V ,
-
View: WSH_DSNO_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEMS_V, object_name:WSH_DSNO_ITEMS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ITEMS_V ,
-
PACKAGE: APPS.RLM_CUM_SV
12.2.2
-
PACKAGE: APPS.RLM_CUM_SV
12.1.1
-
PACKAGE BODY: APPS.RLM_RLMDMSIQ_XMLP_PKG
12.1.1
-
PACKAGE BODY: APPS.RLM_RLMDMSIQ_XMLP_PKG
12.2.2
-
APPS.RLM_CUM_SV dependencies on RLM_DP_SV
12.2.2
-
APPS.RLM_CUM_SV dependencies on RLM_CUM_SV
12.2.2
-
APPS.RLM_CUM_SV dependencies on RLM_CUM_SV
12.1.1
-
APPS.RLM_RLMDMSIQ_XMLP_PKG dependencies on RLM_CUST_ITEM_CUM_KEYS
12.1.1
-
APPS.RLM_RLMDMSIQ_XMLP_PKG dependencies on RLM_CUST_ITEM_CUM_KEYS
12.2.2
-
APPS.RLM_CUM_SV dependencies on RLM_CORE_SV
12.1.1
-
APPS.RLM_CUM_SV dependencies on RLM_CUST_ITEM_CUM_KEYS
12.1.1
-
APPS.RLM_CUM_SV dependencies on RLM_CORE_SV
12.2.2
-
APPS.RLM_CUM_SV dependencies on RLM_CUST_ITEM_CUM_KEYS
12.2.2
-
APPS.RLM_CUM_SV dependencies on RLM_CUST_ITEM_CUM_KEYS
12.2.2
-
APPS.RLM_CUM_SV dependencies on RLM_CUST_ITEM_CUM_KEYS
12.1.1