Search Results so_lookups
Overview
APPS.SO_SCHEDULE_DETAILS is a dated, VALID view in the Oracle E-Business Suite Order Entry (OE) module, defined in the APPS schema. It presents order line scheduling information by resolving the relationship between an order line, its child option/configuration lines, and the underlying scheduling detail rows held in SO_LINE_DETAILS. Because it joins order header and line data to item master descriptions, warehouse parameters, and lookup meanings, the view provides a denormalized, reporting-ready picture of scheduled demand that can be consumed directly by reports, concurrent programs, and integration extracts without requiring callers to reconstruct the parent/child line hierarchy themselves.
The view is especially relevant to users investigating the OPTION_LINE_NUMBER column, since that column is produced by the view rather than stored as a discrete column on a base table. It is derived using a DECODE on PARENT_LINE_ID: when a line has no parent, the value resolves to an empty string; otherwise it returns the line's LINE_NUMBER. This construct exposes the number of a modelled or configured option line, allowing a report to distinguish top-level (model) lines from their option children.
Underlying Base Objects
The documented base objects include FND_GLOBAL and FND_PROFILE (packages), MTL_PARAMETERS, MTL_SYSTEM_ITEMS_VL, SO_LINES, SO_LINE_DETAILS, SO_LOOKUPS, SO_PICKING_LINES, and SO_PICKING_LINE_DETAILS. The view text supplied in the metadata shows a UNION of at least three branches. The first branch drives off SO_LINES and SO_LINE_DETAILS, joining MTL_SYSTEM_ITEMS_VL (filtered by the profile option SO_ORGANIZATION_ID), SO_LOOKUPS for RECEIPT STATUS, and SO_LOOKUPS for SOURCE TYPE. The second branch retains SO_LINES, SO_LINE_DETAILS, and SO_LOOKUPS but adds MTL_PARAMETERS to supply the warehouse organization code, filtering for unreleased schedule rows. A further branch draws on SO_PICKING_LINES and SO_PICKING_LINE_DETAILS. The lookups are outer-joined via the (+) operator, so receipt status and source type meanings are returned where available without suppressing the row.
Key Columns
- LINE_ID — identifier of the order line, and the correlate between the view branches.
- OPTION_LINE_NUMBER — derived from LINE_NUMBER when PARENT_LINE_ID is populated; blank for top-level lines.
- PARENT_LINE_ID — the parent line reference used to establish the option/configuration relationship.
- COMPONENT_CODE / INVENTORY_ITEM_ID — the component and its item identifier.
- QUANTITY — for the item-master branch, computed as ORDERED_QUANTITY multiplied by COMPONENT_RATIO; for the detail branch, taken directly from LD.QUANTITY.
- RATIO — the component ratio used in quantity derivation.
- DESCRIPTION — item description, or an assembled string of organization code, schedule date, revision, lot, and subinventory.
- ROW_LEVEL — discriminates the item-master row (0) from schedule-detail rows (1).
- ID_COLUMN — the LINE_ID or LINE_DETAIL_ID, depending on row level.
- RECEIPT_STATUS / SOURCE_TYPE — lookup meanings resolved through SO_LOOKUPS.
- END_ITEM_UNIT_NUMBER — the unit number of the end item for configured items.
Common Use Cases and Queries
Typical applications include scheduled-order reports, option/configuration line listings, and extracts that must separate model lines from their option children. The OPTION_LINE_NUMBER column is the natural filter for identifying configured options.
To list option lines for a parent:
SELECT option_line_number, component_code, inventory_item_id, quantity, ratio, description, receipt_statusFROM apps.so_schedule_detailsWHERE parent_line_id = :parent_line_idAND option_line_number IS NOT NULLORDER BY option_line_number;
To enumerate top-level lines with their option counts:
SELECT line_id, end_item_unit_number, source_type, COUNT(option_line_number) optionsFROM apps.so_schedule_detailsWHERE option_line_number IS NULLGROUP BY line_id, end_item_unit_number, source_type;
Because ROW_LEVEL and the UNION branches coexist, queries should filter on ROW_LEVEL or on the relevant column locality to avoid duplicate projections. All access is read-only and governed by standard APPS schema privileges.
-
View: SO_SCHEDULE_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_SCHEDULE_DETAILS, object_name:SO_SCHEDULE_DETAILS, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_SCHEDULE_DETAILS ,
-
View: SO_SCHEDULE_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_SCHEDULE_DETAILS, object_name:SO_SCHEDULE_DETAILS, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_SCHEDULE_DETAILS ,
-
View: OEFV_SALES_CREDIT_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEFV_SALES_CREDIT_TYPES ONT.OEFV_SALES_CREDIT_TYPES, object_name:OEFV_SALES_CREDIT_TYPES, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.OEFV_SALES_CREDIT_TYPES ,
-
View: OEFV_SALES_CREDIT_TYPES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEFV_SALES_CREDIT_TYPES ONT.OEFV_SALES_CREDIT_TYPES, object_name:OEFV_SALES_CREDIT_TYPES, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.OEFV_SALES_CREDIT_TYPES ,
-
View: WSH_DELIVERIES_V
12.2.2
product: OE - Order Entry , description: Deliveries for departure planning or ship confirm , implementation_dba_data: Not implemented in this database ,
-
View: SO_DELIVERIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_DELIVERIES_V, object_name:SO_DELIVERIES_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_DELIVERIES_V ,
-
View: WSH_DELIVERIES_V
12.1.1
product: OE - Order Entry , description: Deliveries for departure planning or ship confirm , implementation_dba_data: Not implemented in this database ,
-
View: SO_PICKING_RULES_V
12.2.2
product: OE - Order Entry , description: 10SC ONLY , implementation_dba_data: Not implemented in this database ,
-
View: SO_DELIVERIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_DELIVERIES_V, object_name:SO_DELIVERIES_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_DELIVERIES_V ,
-
View: SO_PICKING_RULES_V
12.1.1
product: OE - Order Entry , description: 10SC ONLY , implementation_dba_data: Not implemented in this database ,
-
View: SO_PICKING_BATCHES_V
12.1.1
product: OE - Order Entry , description: 10SC ONLY , implementation_dba_data: Not implemented in this database ,
-
View: SO_PICKING_BATCHES_V
12.2.2
product: OE - Order Entry , description: 10SC ONLY , implementation_dba_data: Not implemented in this database ,
-
View: SO_HEADERS_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_HEADERS_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_DROP_SHIP_LINKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_DROP_SHIP_LINKS_V, object_name:SO_DROP_SHIP_LINKS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_DROP_SHIP_LINKS_V ,
-
View: SO_DROP_SHIP_LINKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_DROP_SHIP_LINKS_V, object_name:SO_DROP_SHIP_LINKS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_DROP_SHIP_LINKS_V ,
-
View: SO_SALES_CHANNELS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_SALES_CHANNELS_V, object_name:SO_SALES_CHANNELS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_SALES_CHANNELS_V ,
-
View: SO_SALES_CHANNELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_SALES_CHANNELS_V, object_name:SO_SALES_CHANNELS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_SALES_CHANNELS_V ,
-
View: SO_CREDIT_CARDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_CREDIT_CARDS_V, object_name:SO_CREDIT_CARDS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_CREDIT_CARDS_V ,
-
View: SO_PAYMENT_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_PAYMENT_TYPES_V, object_name:SO_PAYMENT_TYPES_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_PAYMENT_TYPES_V ,
-
View: SO_PAYMENT_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_PAYMENT_TYPES_V, object_name:SO_PAYMENT_TYPES_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_PAYMENT_TYPES_V ,
-
View: SO_CREDIT_CARDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_CREDIT_CARDS_V, object_name:SO_CREDIT_CARDS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_CREDIT_CARDS_V ,
-
View: OE_BIS_BOOKINGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.OE_BIS_BOOKINGS_V, object_name:OE_BIS_BOOKINGS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.OE_BIS_BOOKINGS_V ,
-
View: OE_BIS_BOOKINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OE_BIS_BOOKINGS_V, object_name:OE_BIS_BOOKINGS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.OE_BIS_BOOKINGS_V ,
-
View: OE_BIS_BILLINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OE_BIS_BILLINGS_V, object_name:OE_BIS_BILLINGS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.OE_BIS_BILLINGS_V ,
-
View: SO_FREIGHT_TERMS_ACTIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_FREIGHT_TERMS_ACTIVE_V, object_name:SO_FREIGHT_TERMS_ACTIVE_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_FREIGHT_TERMS_ACTIVE_V ,
-
View: SO_FREIGHT_TERMS_ACTIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_FREIGHT_TERMS_ACTIVE_V, object_name:SO_FREIGHT_TERMS_ACTIVE_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_FREIGHT_TERMS_ACTIVE_V ,
-
View: SO_SHIP_PRIORITIES_ACTIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_SHIP_PRIORITIES_ACTIVE_V, object_name:SO_SHIP_PRIORITIES_ACTIVE_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_SHIP_PRIORITIES_ACTIVE_V ,
-
View: SO_SHIP_PRIORITIES_ACTIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_SHIP_PRIORITIES_ACTIVE_V, object_name:SO_SHIP_PRIORITIES_ACTIVE_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_SHIP_PRIORITIES_ACTIVE_V ,
-
View: SO_LINE_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINE_DETAILS_V, object_name:SO_LINE_DETAILS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINE_DETAILS_V ,
-
View: SO_LINE_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINE_DETAILS_V, object_name:SO_LINE_DETAILS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINE_DETAILS_V ,
-
View: SO_ORDER_CANCELLATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_ORDER_CANCELLATIONS_V, object_name:SO_ORDER_CANCELLATIONS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_ORDER_CANCELLATIONS_V ,
-
View: SO_ORDER_CANCELLATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_ORDER_CANCELLATIONS_V, object_name:SO_ORDER_CANCELLATIONS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_ORDER_CANCELLATIONS_V ,
-
View: OE_BIS_BILLINGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.OE_BIS_BILLINGS_V, object_name:OE_BIS_BILLINGS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.OE_BIS_BILLINGS_V ,
-
View: SO_NOTE_USAGE_ATTR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_NOTE_USAGE_ATTR_V, object_name:SO_NOTE_USAGE_ATTR_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_NOTE_USAGE_ATTR_V ,
-
View: OEBV_ORDER_HOLD_REASONS
12.2.2
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: SO_FREIGHT_CHARGE_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_FREIGHT_CHARGE_TYPES_V, object_name:SO_FREIGHT_CHARGE_TYPES_V, status:VALID, product: OE - Order Entry , description: 10SC Only , implementation_dba_data: APPS.SO_FREIGHT_CHARGE_TYPES_V ,
-
View: SO_FREIGHT_CHARGE_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_FREIGHT_CHARGE_TYPES_V, object_name:SO_FREIGHT_CHARGE_TYPES_V, status:VALID, product: OE - Order Entry , description: 10SC Only , implementation_dba_data: APPS.SO_FREIGHT_CHARGE_TYPES_V ,
-
View: OE_BIS_BACKLOG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.OE_BIS_BACKLOG_V, object_name:OE_BIS_BACKLOG_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.OE_BIS_BACKLOG_V ,
-
View: OEFV_ORDER_HOLD_REASONS
12.1.1
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: SO_NOTE_USAGE_ATTR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_NOTE_USAGE_ATTR_V, object_name:SO_NOTE_USAGE_ATTR_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_NOTE_USAGE_ATTR_V ,
-
View: OE_BIS_BACKLOG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OE_BIS_BACKLOG_V, object_name:OE_BIS_BACKLOG_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.OE_BIS_BACKLOG_V ,
-
View: OEBV_ORDER_HOLD_REASONS
12.1.1
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: OEBV_ACTIONS
12.1.1
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: SO_ORDER_NUMBERS_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: OEFV_PRICE_ADJUSTMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEFV_PRICE_ADJUSTMENTS ONT.OEFV_PRICE_ADJUSTMENTS, object_name:OEFV_PRICE_ADJUSTMENTS, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.OEFV_PRICE_ADJUSTMENTS ,
-
View: OEFV_ORDER_HOLD_REASONS
12.2.2
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: OEFV_ACTIONS
12.1.1
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: OEFV_PRICE_ADJUSTMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEFV_PRICE_ADJUSTMENTS ONT.OEFV_PRICE_ADJUSTMENTS, object_name:OEFV_PRICE_ADJUSTMENTS, status:VALID, product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: APPS.OEFV_PRICE_ADJUSTMENTS ,
-
View: OEBV_ACTIONS
12.2.2
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,