Search Results re_source_flag
Overview
APPS.OE_MRP_OPEN_DEMANDS_V is a reporting and integration view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes open, visible demand from the Order Management module in a flattened, planning-oriented format suitable for consumption by Material Requirements Planning (MRP), Advanced Supply Chain Planning (ASCP), and external reporting tools. The view answers a recurring operational question: which sales order lines are still open and expected to generate demand against inventory or supply? Because it filters on open and visible demand, it is commonly used as a source for "open demand" extracts, one of which is the spreadsheet artifact "Open Demand sheet_Apr'26.xlsx" referenced by users searching this object.
The view consolidates header-level, line-level, and transaction-type information into a single denormalized result set, eliminating the need for report authors to join the Order Management tables manually for routine demand reporting.
Underlying Base Objects
The view is defined over four documented base objects:
- OE_ORDER_HEADERS_ALL — supplies order number, order date type, and header identifiers.
- OE_ORDER_LINES_ALL — supplies line, shipment, item, quantity, scheduling, and status attributes.
- OE_SETS — outer-joined twice (SET1 on SHIP_SET_ID, SET2 on ARRIVAL_SET_ID) to resolve ship set and arrival set names.
- OE_TRANSACTION_TYPES_VL — supplies the order type name, joined on ORDER_TYPE_ID and ORG_ID.
The join logic is significant. The view returns only lines where HEADER_ID matches the header, SHIPPED_QUANTITY IS NULL, ORDERED_QUANTITY is greater than zero, SOURCE_TYPE_CODE is not 'EXTERNAL', OPEN_FLAG equals 'Y', and NVL(VISIBLE_DEMAND_FLAG,'N') equals 'Y'. The OE_SETS joins use the Oracle outer-join operator (+), so lines without ship or arrival sets are still returned.
Key Columns
- ORDER_NUMBER, HEADER_ID, LINE_ID, ORG_ID — order and organizational identifiers.
- LINE_NUMBER, SHIPMENT_NUMBER, OPTION_NUMBER, COMPONENT_NUMBER — line and configuration positioning, supporting ATO and configured items.
- ORDERED_ITEM, INVENTORY_ITEM_ID, ORDER_QUANTITY_UOM, ORDERED_QUANTITY — the demanded item and quantity.
- REQUEST_DATE, PROMISE_DATE, SCHEDULE_SHIP_DATE, SCHEDULE_ARRIVAL_DATE, LATEST_ACCEPTABLE_DATE, EARLIEST_ACCEPTABLE_DATE — scheduling and date columns central to demand-dated reporting. Note the DECODE on ORDER_DATE_TYPE_CODE: REQUEST_DATE is returned in the shipment-date column unless the order date type is 'ARRIVAL', in which case it is returned in the arrival-date column.
- SHIP_FROM_ORG_ID, SHIP_TO_ORG_ID, SOLD_TO_ORG_ID — sourcing and customer party context.
- DEMAND_CLASS_CODE, PLANNING_PRIORITY, LINE_CATEGORY_CODE, FLOW_STATUS_CODE — planning and fulfillment classification.
- PROJECT_ID, TASK_ID, TOP_MODEL_LINE_ID, ATO_LINE_ID, LINK_TO_LINE_ID, RE_SOURCE_FLAG, SHIP_MODEL_COMPLETE_FLAG — project and configuration linkages.
- OT.NAME — the order type name from OE_TRANSACTION_TYPES_VL.
Common Use Cases and Queries
Typical applications include open-order backlog extracts, MRP/ASCP demand feeds, promise-date slippage analysis, and shipment set review. A representative query follows:
SELECT order_number, line_number, ordered_item, ordered_quantity, order_quantity_uom, schedule_ship_date, promise_date, ship_from_org_id FROM apps.oe_mrp_open_demands_v WHERE org_id = :p_org AND schedule_ship_date BETWEEN :p_from AND :p_to ORDER BY schedule_ship_date, order_number;- To aggregate by item:
SELECT ordered_item, SUM(ordered_quantity) FROM apps.oe_mrp_open_demands_v GROUP BY ordered_item; - To isolate configured demand: filter on
ato_line_id IS NOT NULL OR top_model_line_id IS NOT NULL.
Because the view returns only lines satisfying the open and visible demand predicates, no additional status filtering is generally required, though organizations frequently add ORG_ID and date range restrictions for performance.
-
VIEW: APPS.OE_MRP_OPEN_DEMANDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_MRP_OPEN_DEMANDS_V, object_name:OE_MRP_OPEN_DEMANDS_V, status:VALID,
-
VIEW: APPS.OE_MRP_OPEN_DEMANDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_MRP_OPEN_DEMANDS_V, object_name:OE_MRP_OPEN_DEMANDS_V, status:VALID,
-
View: OE_MRP_OPEN_DEMANDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_MRP_OPEN_DEMANDS_V, object_name:OE_MRP_OPEN_DEMANDS_V, status:VALID, product: ONT - Order Management , description: This vew is used by MRP for their Scheduler's Workbench. , implementation_dba_data: APPS.OE_MRP_OPEN_DEMANDS_V ,
-
View: OE_MRP_OPEN_DEMANDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_MRP_OPEN_DEMANDS_V, object_name:OE_MRP_OPEN_DEMANDS_V, status:VALID, product: ONT - Order Management , description: This vew is used by MRP for their Scheduler's Workbench. , implementation_dba_data: APPS.OE_MRP_OPEN_DEMANDS_V ,
-
APPS.OE_GROUP_SCH_UTIL SQL Statements
12.2.2
-
VIEW: APPS.ASO_I_OE_ORDER_LINES_V
12.1.1
-
VIEW: APPS.ASO_I_OE_ORDER_LINES_V
12.2.2
-
VIEW: ONT.OE_BLANKET_LINES_HIST#
12.2.2
-
VIEW: ONT.OE_BLANKET_LINES_ALL#
12.2.2
-
APPS.OE_GROUP_SCH_UTIL SQL Statements
12.1.1
-
View: ASO_I_OE_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_OE_ORDER_LINES_V, object_name:ASO_I_OE_ORDER_LINES_V, status:VALID, product: ASO - Order Capture , description: This view includes all columns from the Oracle Order Management order lines tables and is currently used by Oracle Sales Compensation only. , implementation_dba_data: APPS.ASO_I_OE_ORDER_LINES_V ,
-
View: ASO_I_OE_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_OE_ORDER_LINES_V, object_name:ASO_I_OE_ORDER_LINES_V, status:VALID, product: ASO - Order Capture , description: This view includes all columns from the Oracle Order Management order lines tables and is currently used by Oracle Sales Compensation only. , implementation_dba_data: APPS.ASO_I_OE_ORDER_LINES_V ,
-
VIEW: ONT.OE_ORDER_LINES_ALL#
12.2.2
-
VIEW: ONT.OE_ORDER_LINES_HISTORY#
12.2.2
-
View: OE_LINE_ACKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_ACKS_V, object_name:OE_LINE_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Lines , implementation_dba_data: APPS.OE_LINE_ACKS_V ,
-
View: OE_LINE_ACKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_ACKS_V, object_name:OE_LINE_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Lines , implementation_dba_data: APPS.OE_LINE_ACKS_V ,
-
VIEW: ONT.OE_LINE_ACKS#
12.2.2
-
VIEW: APPS.OE_LINE_ACKS_V
12.1.1
-
VIEW: APPS.OE_LINE_ACKS_V
12.2.2
-
VIEW: ONT.OE_BLANKET_LINES_ALL#
12.2.2
owner:ONT, object_type:VIEW, object_name:OE_BLANKET_LINES_ALL#, status:VALID,
-
VIEW: ONT.OE_ORDER_LINES_ALL#
12.2.2
owner:ONT, object_type:VIEW, object_name:OE_ORDER_LINES_ALL#, status:VALID,
-
VIEW: ONT.OE_BLANKET_LINES_HIST#
12.2.2
owner:ONT, object_type:VIEW, object_name:OE_BLANKET_LINES_HIST#, status:VALID,
-
VIEW: ONT.OE_ORDER_LINES_HISTORY#
12.2.2
owner:ONT, object_type:VIEW, object_name:OE_ORDER_LINES_HISTORY#, status:VALID,
-
VIEW: APPS.OE_BLKT_LINES_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLKT_LINES_HIST_V, object_name:OE_BLKT_LINES_HIST_V, status:VALID,
-
VIEW: APPS.OE_BLKT_LINES_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLKT_LINES_HIST_V, object_name:OE_BLKT_LINES_HIST_V, status:VALID,
-
VIEW: APPS.OE_BLANKET_LINES_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_HIST_V, object_name:OE_BLANKET_LINES_HIST_V, status:VALID,
-
VIEW: APPS.OE_BLANKET_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_V, object_name:OE_BLANKET_LINES_V, status:VALID,
-
APPS.OE_UPG_SO SQL Statements
12.2.2
-
VIEW: APPS.OE_BLANKET_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_V, object_name:OE_BLANKET_LINES_V, status:VALID,
-
VIEW: APPS.OE_BLANKET_LINES_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_HIST_V, object_name:OE_BLANKET_LINES_HIST_V, status:VALID,
-
APPS.OE_VERSION_HISTORY_UTIL SQL Statements
12.2.2
-
VIEW: APPS.OE_ORDER_LINES_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_HIST_V, object_name:OE_ORDER_LINES_HIST_V, status:VALID,
-
APPS.OE_UPG_SO SQL Statements
12.1.1
-
APPS.OE_VERSION_HISTORY_UTIL SQL Statements
12.1.1
-
APPS.OE_BULK_LINE_UTIL SQL Statements
12.1.1
-
View: OE_AK_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_LINES_V, object_name:OE_AK_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_LINES_V ,
-
View: OE_AK_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_LINES_V, object_name:OE_AK_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_LINES_V ,
-
APPS.OE_BULK_LINE_UTIL SQL Statements
12.2.2
-
VIEW: APPS.OE_ORDER_LINES_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_HIST_V, object_name:OE_ORDER_LINES_HIST_V, status:VALID,
-
TYPE: SYSTEM.ASO_LINE_TYPE
12.2.2
owner:SYSTEM, object_type:TYPE, object_name:ASO_LINE_TYPE, status:VALID,
-
TYPE: SYSTEM.ASO_LINE_TYPE
12.1.1
owner:SYSTEM, object_type:TYPE, object_name:ASO_LINE_TYPE, status:VALID,
-
VIEW: ONT.OE_LINE_ACKS#
12.2.2
owner:ONT, object_type:VIEW, object_name:OE_LINE_ACKS#, status:VALID,
-
View: OE_BLANKET_LINES_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_HIST_V, object_name:OE_BLANKET_LINES_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA line history information, and it is udes in BSA version comparison UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_HIST_V ,
-
View: OE_BLANKET_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_V, object_name:OE_BLANKET_LINES_V, status:VALID, product: ONT - Order Management , description: This view is used to get the BSA lines information, used in BSA entry UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_V ,
-
View: OE_BLANKET_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_V, object_name:OE_BLANKET_LINES_V, status:VALID, product: ONT - Order Management , description: This view is used to get the BSA lines information, used in BSA entry UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_V ,
-
View: OE_BLANKET_LINES_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_HIST_V, object_name:OE_BLANKET_LINES_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA line history information, and it is udes in BSA version comparison UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_HIST_V ,
-
APPS.OE_UPG_SO_NEW SQL Statements
12.2.2
-
APPS.OE_UPG_SO_NEW SQL Statements
12.1.1
-
VIEW: APPS.ASO_I_OE_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_OE_ORDER_LINES_V, object_name:ASO_I_OE_ORDER_LINES_V, status:VALID,
-
TYPE: APPS.OE_ORDER_PUB_LINE_REC25
12.2.2
owner:APPS, object_type:TYPE, object_name:OE_ORDER_PUB_LINE_REC25, status:VALID,