Search Results aso_i_oe_order_lines_v
Overview
ASO_I_OE_ORDER_LINES_V is an Oracle E-Business Suite view owned by the APPS schema and defined over Oracle Order Management order lines data. It resides in the ASO (Order Capture) product family and carries a VALID status in the ETRM reference for both 12.1.1 and 12.2.2. Its defining characteristic, as documented, is that it exposes all columns from the Oracle Order Management order line tables in a single, flat projection, making the full attribute set of OM order lines available through one object rather than requiring callers to join or widen the base entity themselves.
Although the view sits under the Order Capture module, ETRM explicitly records that it is currently used by Oracle Sales Compensation only. This is an important scoping note: the view is not a general-purpose Order Management inquiry object and should not be treated as a supported public interface for custom development. Its presence in the APPS schema means it is visible to any user with the appropriate grants, but its functional role is confined to the Sales Compensation integration path, where a denormalized line-level feed is required.
Underlying Base Objects
Per the documented metadata, the view references a single base object: OE_ORDER_LINES, accessed through an APPS synonym. In a standard EBS installation, OE_ORDER_LINES is the core transactional table that stores order line records belonging to OE_ORDER_HEADERS, with the two linked by HEADER_ID. The view therefore functions as a presentation layer over that table, projecting its columns without aggregation or significant transformation.
Because the lineage is a one-to-one mapping to OE_ORDER_LINES, row cardinality and data behavior track the base table directly. Any change to the underlying OE_ORDER_LINES structure or to order line data is immediately reflected in the view. The synonym indirection means the view resolves the base table through the APPS-owned synonym rather than a hard-coded schema reference, consistent with standard EBS object design.
Key Columns
- Line and header identifiers: LINE_ID, HEADER_ID, ORG_ID, and LINE_NUMBER uniquely locate each order line and its owning order within an operating unit.
- Quantities and units of measure: ORDERED_QUANTITY, SHIPPING_QUANTITY, SHIPPED_QUANTITY, FULFILLED_QUANTITY, CANCELLED_QUANTITY, PRICING_QUANTITY, and their associated UOM columns describe demand and fulfillment state.
- Dates: REQUEST_DATE, PROMISE_DATE, SCHEDULE_SHIP_DATE, PRICING_DATE, and TAX_DATE support scheduling, pricing, and tax determination.
- Pricing and tax: UNIT_SELLING_PRICE, UNIT_LIST_PRICE, TAX_VALUE, TAX_CODE, TAX_RATE, PRICE_LIST_ID, and TAX_EXEMPT_FLAG provide the monetary context consumed by Sales Compensation crediting.
- Party and location references: SOLD_TO_ORG_ID, SHIP_TO_ORG_ID, INVOICE_TO_ORG_ID, DELIVER_TO_ORG_ID, and their matching contact ID columns identify the sales and fulfillment parties.
- Item and project references: INVENTORY_ITEM_ID, ITEM_REVISION, PROJECT_ID, and TASK_ID tie the line to inventory and project accounting.
- Flexfield attributes: CONTEXT, ATTRIBUTE1 through ATTRIBUTE15, and GLOBAL_ATTRIBUTE_CATEGORY with GLOBAL_ATTRIBUTE1 through GLOBAL_ATTRIBUTE5 expose descriptive flexfield content.
Common Use Cases and Queries
The primary documented consumer is Oracle Sales Compensation, which reads order line values to derive credit and quota performance. Because the view is flat and complete, a typical access pattern filters on the identifiers and dates relevant to a compensation period:
- Retrieve lines for a specific order:
SELECT line_id, line_number, ordered_quantity, unit_selling_price FROM aso_i_oe_order_lines_v WHERE header_id = :p_header_id; - Aggregate sales by organization for a period:
SELECT org_id, SUM(ordered_quantity * unit_selling_price) FROM aso_i_oe_order_lines_v WHERE request_date BETWEEN :p_from AND :p_to GROUP BY org_id; - Inspect flexfield detail for a line:
SELECT line_id, context, attribute1, attribute2 FROM aso_i_oe_order_lines_v WHERE line_id = :p_line_id;
Queries should be scoped by ORG_ID or HEADER_ID to avoid full scans of the base order line table, and access should be limited to the Sales Compensation context for which the view is documented. Custom integrations should query OE_ORDER_LINES directly rather than relying on this internally scoped object.
-
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: 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: IBE_OE_ORDER_LINES_V
12.2.2
product: IBE - iStore , description: This view is used to get the Order Line Details. This view is based on aso_i_oe_order_headers_v and aso_i_oe_order_lines_v. , implementation_dba_data: Not implemented in this database ,
-
APPS.CN_NOTIFY_ORDERS SQL Statements
12.1.1
-
VIEW: APPS.CS_SR_NEW_PRODUCTS_MAINT_V
12.1.1
-
View: IBE_OE_ORDER_LINES_V
12.1.1
product: IBE - iStore , description: This view is used to get the Order Line Details. This view is based on aso_i_oe_order_headers_v and aso_i_oe_order_lines_v. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.CS_SR_NEW_PRODUCTS_MAINT_V
12.2.2
-
APPS.CN_NOTIFY_ORDERS SQL Statements
12.2.2
-
VIEW: APPS.CS_SR_PRODUCTS_MAINT_V
12.2.2
-
VIEW: APPS.CS_SR_PRODUCTS_MAINT_V
12.1.1
-
PACKAGE BODY: APPS.CN_COLLECTION_OE_GEN
12.1.1
-
PACKAGE BODY: APPS.CN_COLLECTION_OE_GEN
12.2.2
-
View: XNC_ORDER_LINE_SYSTEM_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: XNC_ORDER_LINE_SYSTEM_V retrieves the system key for an order line. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ITEM_TYPE_CHARGES_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: This view gives Total One Time and Total Recurring Charges for an Order . , implementation_dba_data: Not implemented in this database ,
-
View: CS_CP_ORDERINFO_RG_V
12.2.2
product: CS - Service , description: This view lists the order information , implementation_dba_data: Not implemented in this database ,
-
View: CS_CP_ORDERINFO_RG_V
12.1.1
product: CS - Service , description: This view lists the order information , implementation_dba_data: Not implemented in this database ,
-
APPS.IBU_ORDER_CAPTURE SQL Statements
12.2.2
-
PACKAGE BODY: APPS.IBU_ORDER_CAPTURE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBU_ORDER_CAPTURE, status:VALID,
-
PACKAGE BODY: APPS.BIC_SUMMARY_EXTRACT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIC_SUMMARY_EXTRACT_PKG, status:VALID,
-
View: XNC_ORDER_LINE_STATUS_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: This view gives distinct order line statuses for an Order . , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ITEM_TYPE_CHARGES_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: This view gives Total One Time and Total Recurring Charges for an Order . , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ORDER_LINE_SYSTEM_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: XNC_ORDER_LINE_SYSTEM_V retrieves the system key for an order line. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_PROV_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: XNC_PROV_V retrieves provisioning data applied to an order line. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ORDER_LINES_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: This view gives Order Line Details for an Order. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.CN_NOTIFY_ORDERS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CN_NOTIFY_ORDERS, status:VALID,
-
PACKAGE BODY: APPS.CN_NOTIFY_ORDERS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CN_NOTIFY_ORDERS, status:VALID,
-
View: XNC_PROV_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: XNC_PROV_V retrieves provisioning data applied to an order line. , implementation_dba_data: Not implemented in this database ,
-
12.2.2 FND Design Data
12.2.2
-
View: XNC_ORD_LINE_STATUS_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: This view gives order line statuses for an Order . , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ORD_LINE_STATUS_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: This view gives order line statuses for an Order . , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IBU_ORDER_CAPTURE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBU_ORDER_CAPTURE, status:VALID,
-
APPS.IBU_ORDER_CAPTURE SQL Statements
12.1.1
-
View: XNC_ORDER_LINES_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: This view gives Order Line Details for an Order. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ORDER_LINE_STATUS_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: This view gives distinct order line statuses for an Order . , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.BIC_SUMMARY_EXTRACT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BIC_SUMMARY_EXTRACT_PKG, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
View: CS_SR_PRODUCTS_MAINT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_PRODUCTS_MAINT_V, object_name:CS_SR_PRODUCTS_MAINT_V, status:VALID, product: CS - Service , description: This view contains the information about all products in the InstallBase. This view is using to get all product information for a perticular account in Service request. , implementation_dba_data: APPS.CS_SR_PRODUCTS_MAINT_V ,
-
View: XNC_ORDER_PROV_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: This view gives parameters name and value for a given Order Line. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ORDER_PROV_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: This view gives parameters name and value for a given Order Line. , implementation_dba_data: Not implemented in this database ,
-
View: CS_SR_PRODUCTS_MAINT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_PRODUCTS_MAINT_V, object_name:CS_SR_PRODUCTS_MAINT_V, status:VALID, product: CS - Service , description: This view contains the information about all products in the InstallBase. This view is using to get all product information for a perticular account in Service request. , implementation_dba_data: APPS.CS_SR_PRODUCTS_MAINT_V ,
-
View: CS_SR_NEW_PRODUCTS_MAINT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_NEW_PRODUCTS_MAINT_V, object_name:CS_SR_NEW_PRODUCTS_MAINT_V, status:VALID, product: CS - Service , description: This view contains the information about all products in the InstallBase release 11.5.6 and higher . This view is used to get all product information for a particular account in Service request. , implementation_dba_data: APPS.CS_SR_NEW_PRODUCTS_MAINT_V ,
-
View: BIC_INSTALLED_BASE_DETAIL_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
12.1.1 DBA Data
12.1.1
-
View: BIC_INSTALLED_BASE_DETAIL_V
12.2.2
product: BIC - Customer Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.CSI_CUST_PROD_MAINT_V
12.2.2
-
VIEW: APPS.CSI_CUST_PROD_MAINT_V
12.1.1
-
View: CS_SR_NEW_PRODUCTS_MAINT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_NEW_PRODUCTS_MAINT_V, object_name:CS_SR_NEW_PRODUCTS_MAINT_V, status:VALID, product: CS - Service , description: This view contains the information about all products in the InstallBase release 11.5.6 and higher . This view is used to get all product information for a particular account in Service request. , implementation_dba_data: APPS.CS_SR_NEW_PRODUCTS_MAINT_V ,
-
View: CS_CUST_PROD_MAINT_V
12.1.1
product: CS - Service , description: New View for Customer Products - Performance , implementation_dba_data: Not implemented in this database ,
-
View: CSI_CUST_PROD_MAINT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CUST_PROD_MAINT_V, object_name:CSI_CUST_PROD_MAINT_V, status:VALID, product: CSI - Install Base , description: Backward Compatible : Customer Products Details View. , implementation_dba_data: APPS.CSI_CUST_PROD_MAINT_V ,