Search Results cust_po_number
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: ASO.ASO_PAYMENTS#
12.2.2
-
VIEW: APPS.WMS_WP_ORDERS_GTMP_V
12.2.2
-
VIEW: PN.PN_TERM_TEMPLATES_ALL#
12.2.2
-
VIEW: RLM.RLM_DEMAND_EXCEPTIONS#
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 ,
-
VIEW: APPS.WMS_WP_ORDERS_GTMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_WP_ORDERS_GTMP_V, object_name:WMS_WP_ORDERS_GTMP_V, status:VALID,
-
VIEW: MSC.MSC_SALES_ORDERS#
12.2.2
-
VIEW: APPS.WMS_WP_WWB_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_WP_WWB_ORDERS_V, object_name:WMS_WP_WWB_ORDERS_V, status:VALID,
-
VIEW: OKS.OKS_K_LINES_BH#
12.2.2
-
VIEW: OKC.OKC_K_HEADERS_ALL_B#
12.2.2
-
VIEW: OKC.OKC_K_HEADERS_ALL_BH#
12.2.2
-
VIEW: PN.PN_PAYMENT_TERMS_HISTORY#
12.2.2
-
VIEW: OKS.OKS_K_LINES_B#
12.2.2
-
View: OE_AGREEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.OE_AGREEMENTS_V, object_name:OE_AGREEMENTS_V, status:VALID, product: QP - Advanced Pricing , description: Obsolete , implementation_dba_data: APPS.OE_AGREEMENTS_V ,
-
VIEW: APPS.ASO_PVT_PENDING_ORDERS_BALI_V
12.1.1
-
View: OE_AGREEMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.OE_AGREEMENTS_V, object_name:OE_AGREEMENTS_V, status:VALID, product: QP - Advanced Pricing , description: Obsolete , implementation_dba_data: APPS.OE_AGREEMENTS_V ,
-
VIEW: APPS.OE_AGREEMENTS_V
12.1.1
-
VIEW: APPS.OE_AGREEMENTS_V
12.2.2
-
VIEW: APPS.IBE_ORDER_HEADER_ADV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_ORDER_HEADER_ADV_V, object_name:IBE_ORDER_HEADER_ADV_V, status:VALID,
-
VIEW: MSC.MSC_ST_SALES_ORDERS#
12.2.2
-
VIEW: PN.PN_PAYMENT_TERMS_ALL#
12.2.2
-
VIEW: APPS.ASO_PVT_PENDING_ORDERS_BALI_V
12.2.2
-
TABLE: WMS.WMS_WP_ORDERS_GTMP
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_WP_ORDERS_GTMP, object_name:WMS_WP_ORDERS_GTMP, status:VALID,
-
View: PMI_EDW_MARGIN_F_IV
12.2.2
product: PMI - Process Manufacturing Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IBE_ORDER_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_ORDER_SUM_V, object_name:IBE_ORDER_SUM_V, status:VALID,
-
View: OKL_CS_RELATED_CONTRACT_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_RELATED_CONTRACT_UV, object_name:OKL_CS_RELATED_CONTRACT_UV, status:VALID, product: OKL - Lease and Finance Management , description: List of Related Contracts , implementation_dba_data: APPS.OKL_CS_RELATED_CONTRACT_UV ,
-
VIEW: APPS.ASO_I_SEARCH_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_SEARCH_ORDERS_V, object_name:ASO_I_SEARCH_ORDERS_V, status:VALID,
-
View: OKX_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_ORDER_HEADERS_V, object_name:OKX_ORDER_HEADERS_V, status:VALID, product: OKX - Contracts Integration , description: Order header information , implementation_dba_data: APPS.OKX_ORDER_HEADERS_V ,
-
View: PMI_EDW_MARGIN_F_IV
12.1.1
product: PMI - Process Manufacturing Intelligence , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.OKI_LICENSES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:OKI_LICENSES_V, status:VALID,
-
View: OKX_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_ORDER_HEADERS_V, object_name:OKX_ORDER_HEADERS_V, status:VALID, product: OKX - Contracts Integration , description: Order header information , implementation_dba_data: APPS.OKX_ORDER_HEADERS_V ,
-
VIEW: APPS.IBE_ORDER_HEADER_ADV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_ORDER_HEADER_ADV_V, object_name:IBE_ORDER_HEADER_ADV_V, status:VALID,
-
View: OKC_K_HDR_AGREEDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_HDR_AGREEDS_V, object_name:OKC_K_HDR_AGREEDS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_CONTRACT_HEADERS_B , implementation_dba_data: APPS.OKC_K_HDR_AGREEDS_V ,
-
VIEW: APPS.JTM_OE_ORDER_HEADERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, object_name:JTM_OE_ORDER_HEADERS_ALL_V, status:VALID,
-
VIEW: APPS.CS_SR_CP_NEW_ACCT_EAM_NM_RG_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CS_SR_CP_NEW_ACCT_EAM_NM_RG_V, status:VALID,
-
VIEW: APPS.CS_SR_CP_NEW_ACCT_EAM_NM_RG_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CS_SR_CP_NEW_ACCT_EAM_NM_RG_V, status:VALID,
-
View: OKC_K_HDR_AGREEDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_HDR_AGREEDS_V, object_name:OKC_K_HDR_AGREEDS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_CONTRACT_HEADERS_B , implementation_dba_data: APPS.OKC_K_HDR_AGREEDS_V ,
-
View: OKL_CS_RELATED_CONTRACT_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_RELATED_CONTRACT_UV, object_name:OKL_CS_RELATED_CONTRACT_UV, status:VALID, product: OKL - Leasing and Finance Management , description: List of Related Contracts , implementation_dba_data: APPS.OKL_CS_RELATED_CONTRACT_UV ,
-
VIEW: APPS.IBE_RETURN_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_RETURN_SUM_V, object_name:IBE_RETURN_SUM_V, status:VALID,
-
View: OKC_EBIZ_KHEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_EBIZ_KHEADERS_V, object_name:OKC_EBIZ_KHEADERS_V, status:VALID, product: OKC - Contracts Core , description: Find grid for eBusiness Integration , implementation_dba_data: APPS.OKC_EBIZ_KHEADERS_V ,
-
View: OKC_SEARCH_KHEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_SEARCH_KHEADERS_V, object_name:OKC_SEARCH_KHEADERS_V, status:VALID, product: OKC - Contracts Core , description: Find grid for Contract Search Screen , implementation_dba_data: APPS.OKC_SEARCH_KHEADERS_V ,
-
View: OKC_SEARCH_KHEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_SEARCH_KHEADERS_V, object_name:OKC_SEARCH_KHEADERS_V, status:VALID, product: OKC - Contracts Core , description: Find grid for Contract Search Screen , implementation_dba_data: APPS.OKC_SEARCH_KHEADERS_V ,
-
VIEW: APPS.ASO_I_SEARCH_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_SEARCH_ORDERS_V, object_name:ASO_I_SEARCH_ORDERS_V, status:VALID,
-
VIEW: APPS.IBE_ORDER_SUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_ORDER_SUM_V, object_name:IBE_ORDER_SUM_V, status:VALID,
-
View: OKC_EBIZ_KHEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_EBIZ_KHEADERS_V, object_name:OKC_EBIZ_KHEADERS_V, status:VALID, product: OKC - Contracts Core , description: Find grid for eBusiness Integration , implementation_dba_data: APPS.OKC_EBIZ_KHEADERS_V ,
-
VIEW: APPS.IBE_RETURN_SUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_RETURN_SUM_V, object_name:IBE_RETURN_SUM_V, status:VALID,
-
VIEW: APPS.JTM_OE_ORDER_HEADERS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, object_name:JTM_OE_ORDER_HEADERS_ALL_V, status:VALID,