Search Results oe_sch_order_lines_v
Overview
The APPS.OE_SCH_ORDER_LINES_V view is a scheduling-oriented presentation layer over Oracle Order Management order line data in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes a curated set of columns from OE_ORDER_LINES_ALL together with descriptive and denormalized attributes resolved from customer, item, and lookup sources, giving planners, shipping personnel, and integration developers a single queryable object for order line scheduling and shipment information. Rather than querying the transactional base table and joining to numerous reference objects manually, consumers can select directly from this view to obtain shipment-relevant attributes such as SCHEDULE_SHIP_DATE, SCHEDULE_ARRIVAL_DATE, PROMISE_DATE, SHIP_FROM_ORG_ID, SHIP_TO_ORG_ID, SHIPPING_METHOD_CODE, and SHIPMENT_PRIORITY_CODE. This makes the view particularly valuable for reporting on fulfillment timing, shipment prioritization, and integration feeds into warehouse management, transportation, or advanced planning systems. Because it is defined in the APPS schema and carries VALID status, it is a supported reference point for custom reports, Oracle Reports, BI Publisher data models, and interface programs. Users searching for "shipment_priority" will find the corresponding attribute exposed here as SHIPMENT_PRIORITY_CODE, which carries the priority designation applied to the order line shipment.
Underlying Base Objects
The view is defined primarily over OE_ORDER_LINES_ALL, from which it draws the majority of its columns via the L alias, including line identifiers, dates, quantities, flags, and codes. It joins to OE_ORDER_HEADERS for header-level context such as order number and sold-to information. Descriptive values for shipping methods, freight terms, and shipment priority are resolved through lookup views including OE_LOOKUPS, OE_FND_COMMON_LOOKUPS_V, and AR_LOOKUPS, while OE_TRANSACTION_TYPES_TL supplies translated transaction type names. Customer and site information is sourced from the Oracle Trading Community Architecture (TCA) objects, specifically HZ_CUST_ACCOUNTS, HZ_CUST_ACCT_SITES_ALL, HZ_CUST_SITE_USES_ALL, HZ_PARTIES, HZ_PARTY_SITES, HZ_LOCATIONS, HZ_CUST_ACCOUNT_ROLES, and HZ_RELATIONSHIPS. Inventory and item context is provided by MTL_SYSTEM_ITEMS_VL and MTL_PARAMETERS. Finally, FND_GLOBAL provides session context such as organization and user identifiers, and the OE_SYS_PARAMETERS package supplies Order Management system parameter values used in the view logic.
Key Columns
- LINE_ID, HEADER_ID, ORG_ID: Primary identifiers linking the line to its order header and operating unit.
- SHIPMENT_PRIORITY_CODE: The shipment priority assigned to the line, resolved for display; the column most relevant to shipment_priority searches.
- SCHEDULE_SHIP_DATE, SCHEDULE_ARRIVAL_DATE, PROMISE_DATE, REQUEST_DATE: Core scheduling and commitment dates used in fulfillment planning.
- ORDERED_QUANTITY, SHIPPING_QUANTITY, SHIPPED_QUANTITY, CANCELLED_QUANTITY, FULFILLED_QUANTITY: Quantity metrics reflecting the order lifecycle.
- SHIP_FROM_ORG_ID, SHIP_TO_ORG_ID, DELIVER_TO_ORG_ID, SOLD_TO_ORG_ID: Organization and party identifiers for sourcing and destination.
- SHIPPING_METHOD_CODE, FREIGHT_TERMS_CODE, FREIGHT_CARRIER_CODE, FOB_POINT_CODE: Logistics attributes governing transportation.
- SCHEDULE_STATUS_CODE, DEMAND_BUCKET_TYPE_CODE, DEMAND_CLASS_CODE: Scheduling state and demand classification.
- INVENTORY_ITEM_ID, ORDERED_ITEM, ITEM_REVISION: Item identification for the scheduled line.
Common Use Cases and Queries
A frequent requirement is to report open order lines by shipment priority for a given ship-from organization. The following query illustrates this pattern:
SELECT line_id, header_id, shipment_priority_code, schedule_ship_date, ordered_item, shipping_quantity, ship_from_org_id
FROM apps.oe_sch_order_lines_v
WHERE ship_from_org_id = :p_org_id
AND schedule_status_code IN ('SCHEDULED','READY_TO_RELEASE')
ORDER BY shipment_priority_code, schedule_ship_date;
Integration developers use the view to extract scheduling details for downstream warehouse or transportation systems, filtering by ORG_ID and date ranges. Planners use it to identify lines with imminent SCHEDULE_SHIP_DATE values that remain unscheduled, or to analyze demand distribution by DEMAND_BUCKET_TYPE_CODE. Because the view resolves lookup and customer descriptors, it also supports reporting without additional joins. When writing queries, always qualify the view with the APPS schema and constrain by ORG_ID to respect multi-organization access, and consider the operating unit context established through FND_GLOBAL for consistent results.
-
View: OE_SCH_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_ORDER_LINES_V, object_name:OE_SCH_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_SCH_ORDER_LINES_V ,
-
View: OE_SCH_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_ORDER_LINES_V, object_name:OE_SCH_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_SCH_ORDER_LINES_V ,
-
VIEW: APPS.OE_FND_COMMON_LOOKUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_FND_COMMON_LOOKUPS_V, object_name:OE_FND_COMMON_LOOKUPS_V, status:VALID,
-
VIEW: APPS.OE_FND_COMMON_LOOKUPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_FND_COMMON_LOOKUPS_V, object_name:OE_FND_COMMON_LOOKUPS_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.OE_ORDER_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_HEADERS, status:VALID,
-
SYNONYM: APPS.OE_ORDER_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_HEADERS, status:VALID,
-
SYNONYM: APPS.OE_TRANSACTION_TYPES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_TRANSACTION_TYPES_TL, status:VALID,
-
SYNONYM: APPS.OE_TRANSACTION_TYPES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OE_TRANSACTION_TYPES_TL, status:VALID,
-
VIEW: APPS.OE_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LOOKUPS, object_name:OE_LOOKUPS, status:VALID,
-
VIEW: APPS.OE_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LOOKUPS, object_name:OE_LOOKUPS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNT_ROLES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNT_ROLES, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNT_ROLES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNT_ROLES, status:VALID,
-
PACKAGE: APPS.OE_SYS_PARAMETERS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OE_SYS_PARAMETERS, status:VALID,
-
PACKAGE: APPS.OE_SYS_PARAMETERS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OE_SYS_PARAMETERS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCT_SITES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCT_SITES_ALL, status:VALID,
-
SYNONYM: APPS.HZ_CUST_SITE_USES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_SITE_USES_ALL, status:VALID,
-
VIEW: APPS.OE_SCH_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_ORDER_LINES_V, object_name:OE_SCH_ORDER_LINES_V, status:VALID,
-
SYNONYM: APPS.HZ_CUST_SITE_USES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_SITE_USES_ALL, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCT_SITES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCT_SITES_ALL, status:VALID,
-
VIEW: APPS.OE_SCH_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_ORDER_LINES_V, object_name:OE_SCH_ORDER_LINES_V, status:VALID,
-
VIEW: APPS.AR_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LOOKUPS, object_name:AR_LOOKUPS, status:VALID,
-
VIEW: APPS.AR_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LOOKUPS, object_name:AR_LOOKUPS, status:VALID,
-
SYNONYM: APPS.HZ_RELATIONSHIPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_RELATIONSHIPS, status:VALID,
-
SYNONYM: APPS.HZ_RELATIONSHIPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_RELATIONSHIPS, status:VALID,
-
SYNONYM: APPS.HZ_LOCATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_LOCATIONS, status:VALID,
-
SYNONYM: APPS.OE_ORDER_LINES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_LINES_ALL, status:VALID,
-
SYNONYM: APPS.HZ_PARTY_SITES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTY_SITES, status:VALID,
-
SYNONYM: APPS.HZ_LOCATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_LOCATIONS, status:VALID,
-
SYNONYM: APPS.OE_ORDER_LINES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_LINES_ALL, status:VALID,
-
VIEW: APPS.MTL_SYSTEM_ITEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID,
-
SYNONYM: APPS.HZ_PARTY_SITES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTY_SITES, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
VIEW: APPS.MTL_SYSTEM_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
eTRM - ONT Tables and Views
12.2.2
description: OM WorkFlow Activity Skip Log. ,
-
SYNONYM: APPS.HZ_PARTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
eTRM - ONT Tables and Views
12.1.1
description: OM WorkFlow Activity Skip Log. ,
-
SYNONYM: APPS.HZ_PARTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - INV Tables and Views
12.1.1
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,