Search Results so_lines
Overview
SO_LINES is a VALID view owned by the APPS schema in Oracle E-Business Suite, published under the Order Entry (OE) product family. It exposes the line-level detail of order management transactions — the operational attribute set that describes each ordered item, its pricing, scheduling, shipping, invoicing, and service characteristics — while remaining consistent between Release 12.1.1 and 12.2.2. In EBS reporting and integration architecture, SO_LINES functions as the canonical read interface for order lines: operational reports, custom concurrent programs, OBIEE/BI Publisher extracts, and inbound or outbound interfaces query it rather than the underlying transactional base object. Because it is a database view rather than a table, it carries no physical storage of its own and inherits the security and indexing behavior of the objects beneath it. The view is listed with status VALID in the ETRM registry, confirming that its definition compiles cleanly against the shipped schema and that its columns resolve to existing underlying attributes. Its schema-level listing of columns — including LINE_ID, HEADER_ID, LINE_NUMBER, INVENTORY_ITEM_ID, ORDERED_QUANTITY, and a comprehensive set of date, pricing, and descriptive flexfield columns (ATTRIBUTE1 through ATTRIBUTE15, S10 through S30 with their associated date columns) — reflects the full width of the order line record as maintained in Order Management.
Underlying Base Objects
The documented view metadata for Release 12.2.2 records a single referenced base object: the synonym SO_LINES_ALL. In Oracle EBS, OE_ORDER_LINES_ALL is the seeded transactional table that stores order line records for all operating units, and SO_LINES_ALL is the public synonym that resolves to it. SO_LINES therefore presents the columns of SO_LINES_ALL through a fixed, published projection. This indirection is the central architectural point: application code and integrations reference SO_LINES or SO_LINES_ALL, while the actual data resides in the OE_ORDER_LINES_ALL table. Consequently, multi-organization (operating unit) filtering is not automatically applied by the view itself; the caller must restrict results through HEADER_ID, LINE_ID, or an appropriate join to the order header. The view's VALID status indicates that the projection remains aligned with the base table definition, so column names and datatypes used in custom SQL remain stable across supported 12.1.1 and 12.2.2 environments.
Key Columns
- LINE_ID — Primary identifier of the order line; the principal join key to line-level detail objects.
- HEADER_ID — Foreign key to the order header, linking each line to its parent order.
- LINE_NUMBER — The user-visible sequence number of the line within the order.
- INVENTORY_ITEM_ID — The inventory item ordered on the line.
- LINE_TYPE_CODE — Classifies the line, such as REGULAR, CONFIG, or service-related types.
- OPEN_FLAG — Indicates whether the line remains open for further processing.
- SHIPMENT_SCHEDULE_LINE_ID — Reference to the shipment schedule detail associated with the line.
- PARENT_LINE_ID / ATO_LINE_ID / LINK_TO_LINE_ID / SERVICE_PARENT_LINE_ID — Line-hierarchy references used for configured items, service lines, and line-level relationships.
- ORDERED_QUANTITY, INVOICED_QUANTITY, QUANTITY_TO_INVOICE, REVENUE_AMOUNT — Quantity and revenue measures supporting fulfillment and billing reporting.
- PROMISE_DATE, PRICING_DATE, DATE_REQUESTED_CURRENT — Scheduling and pricing dates central to order promising analysis.
- TERMS_ID, INVOICING_RULE_ID, ACCOUNTING_RULE_ID, INVOICE_COUNT — Commercial terms controlling invoicing and revenue recognition.
- ATTRIBUTE1–ATTRIBUTE15, S10–S30, S10_DATE–S30_DATE, CONTEXT — Descriptive flexfield segments and their context, enabling organization-specific extensions to be reported.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_ID — Standard audit and concurrent-program stamping columns for change tracking and lineage.
Common Use Cases and Queries
Typical scenarios include open-order line reporting, backlog and book-to-bill analysis, invoicing and revenue extracts, configured-item hierarchy reporting, and integration views for downstream fulfillment or billing systems. A straightforward extract of open lines for an order header is:
- SELECT line_id, header_id, line_number, inventory_item_id, ordered_quantity, open_flag FROM apps.so_lines WHERE header_id = :p_header_id ORDER BY line_number;
- SELECT l.line_id, l.line_number, l.inventory_item_id, l.ordered_quantity, l.promise_date FROM apps.so_lines l WHERE l.open_flag = 'Y' AND l.creation_date >= :p_start_date;
- SELECT l.line_id, l.header_id, l.line_type_code, l.attribute1, l.context FROM apps.so_lines l WHERE l.line_type_code = 'CONFIG' AND l.parent_line_id IS NOT NULL;
Performance depends on restricting by indexed keys such as LINE_ID or HEADER_ID, since the view performs no filtering of its own. Where shipment schedules, order headers, or item master attributes are required, join SO_LINES to the corresponding header and schedule objects on HEADER_ID and SHIPMENT_SCHEDULE_LINE_ID respectively. Because flexfield columns are exposed directly, reporting on organization-specific order line attributes requires only the appropriate ATTRIBUTE or S-segment column together with the CONTEXT value used when the flexfield was captured. All such queries should be executed against the APPS schema owner, consistent with the object's documented ownership.
-
View: SO_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINES, object_name:SO_LINES, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINES ,
-
View: SO_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINES, object_name:SO_LINES, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINES ,
-
View: SO_OPEN_ORDER_INVOICE_REFS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_OPEN_ORDER_INVOICE_REFS_V, object_name:SO_OPEN_ORDER_INVOICE_REFS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_OPEN_ORDER_INVOICE_REFS_V ,
-
View: SO_OPEN_ORDER_INVOICE_REFS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_OPEN_ORDER_INVOICE_REFS_V, object_name:SO_OPEN_ORDER_INVOICE_REFS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_OPEN_ORDER_INVOICE_REFS_V ,
-
View: SO_SERVICE_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_SERVICE_DETAILS, object_name:SO_SERVICE_DETAILS, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_SERVICE_DETAILS ,
-
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: SO_LINE_SALES_CREDITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINE_SALES_CREDITS, object_name:SO_LINE_SALES_CREDITS, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINE_SALES_CREDITS ,
-
View: SO_SERVICE_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_SERVICE_DETAILS, object_name:SO_SERVICE_DETAILS, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_SERVICE_DETAILS ,
-
View: SO_MODEL_LINE_COGS_ACCOUNT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_MODEL_LINE_COGS_ACCOUNT, object_name:SO_MODEL_LINE_COGS_ACCOUNT, status:VALID, product: OE - Order Entry , description: Derive the COGS account from the model line details for option lines , implementation_dba_data: APPS.SO_MODEL_LINE_COGS_ACCOUNT ,
-
View: SO_MODEL_LINE_COGS_ACCOUNT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_MODEL_LINE_COGS_ACCOUNT, object_name:SO_MODEL_LINE_COGS_ACCOUNT, status:VALID, product: OE - Order Entry , description: Derive the COGS account from the model line details for option lines , implementation_dba_data: APPS.SO_MODEL_LINE_COGS_ACCOUNT ,
-
View: SO_LINE_SALES_CREDITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINE_SALES_CREDITS, object_name:SO_LINE_SALES_CREDITS, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINE_SALES_CREDITS ,
-
View: SO_ORDER_LINE_STATUS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_ORDER_LINE_STATUS, object_name:SO_ORDER_LINE_STATUS, status:VALID, product: OE - Order Entry , description: Order line cycle status , implementation_dba_data: APPS.SO_ORDER_LINE_STATUS ,
-
View: SO_ORDER_LINE_STATUS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_ORDER_LINE_STATUS, object_name:SO_ORDER_LINE_STATUS, status:VALID, product: OE - Order Entry , description: Order line cycle status , implementation_dba_data: APPS.SO_ORDER_LINE_STATUS ,
-
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_ORDER_STATUS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_ORDER_STATUS_V, object_name:SO_ORDER_STATUS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_ORDER_STATUS_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_ORDER_STATUS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_ORDER_STATUS_V, object_name:SO_ORDER_STATUS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_ORDER_STATUS_V ,
-
Lookup Type: SO_ACTION_LEVEL
12.2.2
product: OE - Order Entry , meaning: Meaning N/A for : SO_ACTION_LEVEL , description: Header or lines ,
-
View: SO_CYCLE_ACTION_NAMES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_CYCLE_ACTION_NAMES_V, object_name:SO_CYCLE_ACTION_NAMES_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_CYCLE_ACTION_NAMES_V ,
-
Lookup Type: SO_ACTION_LEVEL
12.1.1
product: OE - Order Entry , meaning: Meaning N/A for : SO_ACTION_LEVEL , description: Header or lines ,
-
View: SO_CYCLE_ACTION_NAMES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_CYCLE_ACTION_NAMES_V, object_name:SO_CYCLE_ACTION_NAMES_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_CYCLE_ACTION_NAMES_V ,
-
View: SO_LINES_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINES_SUMMARY_V, object_name:SO_LINES_SUMMARY_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINES_SUMMARY_V ,
-
View: SO_LINES_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINES_SUMMARY_V, object_name:SO_LINES_SUMMARY_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINES_SUMMARY_V ,
-
View: SO_LINES_RMA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINES_RMA_V, object_name:SO_LINES_RMA_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINES_RMA_V ,
-
View: SO_INVOICE_NUMBERS_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_LINES_RMA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINES_RMA_V, object_name:SO_LINES_RMA_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINES_RMA_V ,
-
View: SO_INVOICE_NUMBERS_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_LINES_CANCEL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINES_CANCEL_V, object_name:SO_LINES_CANCEL_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINES_CANCEL_V ,
-
View: SO_LINES_CANCEL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINES_CANCEL_V, object_name:SO_LINES_CANCEL_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINES_CANCEL_V ,
-
View: SO_LINES_CURRENT_DEMAND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINES_CURRENT_DEMAND_V, object_name:SO_LINES_CURRENT_DEMAND_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINES_CURRENT_DEMAND_V ,
-
View: SO_LINES_RETURN_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINES_RETURN_LINES_V, object_name:SO_LINES_RETURN_LINES_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINES_RETURN_LINES_V ,
-
View: SO_LINES_RETURN_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINES_RETURN_LINES_V, object_name:SO_LINES_RETURN_LINES_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINES_RETURN_LINES_V ,
-
View: SO_LINES_CURRENT_DEMAND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINES_CURRENT_DEMAND_V, object_name:SO_LINES_CURRENT_DEMAND_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINES_CURRENT_DEMAND_V ,
-
View: SO_PO_REPORT_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_PO_REPORT_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_MFG_STATUS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_MFG_STATUS_VIEW, object_name:SO_MFG_STATUS_VIEW, status:VALID, product: OE - Order Entry , description: This view serves as the source for the manufacturing release status. , implementation_dba_data: APPS.SO_MFG_STATUS_VIEW ,
-
View: SO_MFG_STATUS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_MFG_STATUS_VIEW, object_name:SO_MFG_STATUS_VIEW, status:VALID, product: OE - Order Entry , description: This view serves as the source for the manufacturing release status. , implementation_dba_data: APPS.SO_MFG_STATUS_VIEW ,
-
View: SO_PICKING_LINES_VIEW_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_PICKING_LINES_VIEW_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_LINE_SERVICE_DETAILS_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_LINE_SERVICE_DETAILS_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
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: SO_LINES_VIEW_RETURNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINES_VIEW_RETURNS_V, object_name:SO_LINES_VIEW_RETURNS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINES_VIEW_RETURNS_V ,
-
View: SO_LINES_VIEW_RETURNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_LINES_VIEW_RETURNS_V, object_name:SO_LINES_VIEW_RETURNS_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_LINES_VIEW_RETURNS_V ,
-
View: SO_PICKING_LINES_OEXORRSO_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_LINES_VIEW_LINES_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_PICKING_LINES_OEXORRSO_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_LINES_VIEW_LINES_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,