Search Results reference_header_id
Overview
OE_CRM_ORDER_LINES_V is a compatibility view owned by the APPS schema in Oracle E-Business Suite Releases 12.1.1 and 12.2.2. As its name and ETRM description state, it is a "compatible view provided for CRM usage only," meaning it exists to satisfy the column expectations of Oracle CRM and other downstream integration consumers that were originally written against an earlier data model. The view does not introduce new business logic or aggregation; it is a thin projection over the Order Management order line entity, exposing a stable, flattened set of attributes for order lines.
Its role is principally as a reporting and integration interface. Customers, service, quoting, and tele-sales flows that need to read order line detail without depending on the full, internally volatile structure of OE_ORDER_LINES_ALL can select from this view. Because the view is designated compatibility-only, Oracle reserves the right to keep its column list fixed for CRM purposes while the underlying base table continues to evolve.
Underlying Base Objects
The ETRM metadata documents the view as based on the OE_ORDER_LINES table, referenced through the OE_ORDER_LINES synonym, and the view text in the documentation confirms the projection is drawn from the order line entity (OE_ORDER_LINES_ALL in the physical data model). Only a synonym is listed as a referenced base object, which reflects the standard Oracle EBS practice of exposing the base table to APPS code through a synonym rather than the physical table name.
No joins to headers, customers, or items are embedded in the documented view text; the columns exposed are all intrinsic to the order line record. Contextual values such as customer identifiers are carried as denormalized ID columns on the line itself. Consequently, report writers normally join this view to OE_ORDER_HEADERS_ALL, HZ_CUST_ACCOUNTS, and MTL_SYSTEM_ITEMS_B to resolve descriptive information.
Key Columns
The view exposes a broad set of order line attributes, organized as follows:
- Identity and lineage: LINE_ID, HEADER_ID, ORG_ID, LINE_NUMBER, LINE_TYPE_ID, SOURCE_DOCUMENT_ID, SOURCE_DOCUMENT_LINE_ID, ORIG_SYS_DOCUMENT_REF, ORIG_SYS_LINE_REF, REFERENCE_HEADER_ID, REFERENCE_LINE_ID, REFERENCE_TYPE.
- Item and quantities: ORDERED_ITEM, INVENTORY_ITEM_ID, ITEM_REVISION, ORDERED_QUANTITY, ORDER_QUANTITY_UOM, PRICING_QUANTITY, CANCELLED_QUANTITY, SHIPPED_QUANTITY, FULFILLED_QUANTITY, SHIPPING_QUANTITY.
- Dates and scheduling: REQUEST_DATE, PROMISE_DATE, SCHEDULE_SHIP_DATE, PRICING_DATE, TAX_DATE, SHIPMENT_NUMBER, DELIVERY_LEAD_TIME.
- Pricing and tax: UNIT_SELLING_PRICE, UNIT_LIST_PRICE, TAX_VALUE, TAX_CODE, TAX_RATE, PRICE_LIST_ID, TAX_EXEMPT_FLAG, TAX_EXEMPT_NUMBER, PAYMENT_TERM_ID.
- Parties and locations: SOLD_TO_ORG_ID, SHIP_TO_ORG_ID, INVOICE_TO_ORG_ID, DELIVER_TO_ORG_ID, SHIP_FROM_ORG_ID, plus their associated CONTACT_ID columns.
- Extensibility: CONTEXT, ATTRIBUTE1 through ATTRIBUTE15, and GLOBAL_ATTRIBUTE_CATEGORY with GLOBAL_ATTRIBUTE1 through GLOBAL_ATTRIBUTE15.
Common Use Cases and Queries
Typical scenarios include CRM order status dashboards, quote-to-order conversions, and integrations that must reconcile shipped versus ordered quantities. A representative query joining the view to headers is shown below.
SELECT l.line_id, l.header_id, l.ordered_item, l.ordered_quantity, l.shipped_quantity, h.order_number FROM oe_crm_order_lines_v l, oe_order_headers_all h WHERE l.header_id = h.header_id AND l.org_id = :p_org_id AND h.order_number = :p_order_number;
Regarding the searched term REFERENCE_CUSTOMER_TRX_LINE_ID: this column is not present in the documented column list of OE_CRM_ORDER_LINES_V. The view exposes REFERENCE_LINE_ID, REFERENCE_HEADER_ID, and REFERENCE_TYPE, which relate to source document references, but no customer transaction line identifier. Consumers seeking an invoice line reference must obtain it through the order-to-invoice relationship, for example via OE_ORDER_LINES_ALL and RA_CUSTOMER_TRX_LINES, rather than through this compatibility view.
-
View: OE_CRM_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_LINES_V, object_name:OE_CRM_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_lines_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_LINES_V ,
-
View: OE_CRM_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_LINES_V, object_name:OE_CRM_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_lines_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_LINES_V ,
-
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: 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 ,
-
View: OE_SCH_RSV_SET_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_RSV_SET_LINES_V, object_name:OE_SCH_RSV_SET_LINES_V, status:VALID, product: ONT - Order Management , description: View used by the new form for scheduling across orders with Reservation set information , implementation_dba_data: APPS.OE_SCH_RSV_SET_LINES_V ,
-
View: OE_SCH_RSV_SET_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_RSV_SET_LINES_V, object_name:OE_SCH_RSV_SET_LINES_V, status:VALID, product: ONT - Order Management , description: View used by the new form for scheduling across orders with Reservation set information , implementation_dba_data: APPS.OE_SCH_RSV_SET_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: 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_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 ,
-
View: OE_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_V, object_name:OE_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: View for Order Lines used in the Sales Order form. , implementation_dba_data: APPS.OE_ORDER_LINES_V ,
-
View: 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, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_LINES_HIST_V ,
-
View: OE_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_V, object_name:OE_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: View for Order Lines used in the Sales Order form. , implementation_dba_data: APPS.OE_ORDER_LINES_V ,
-
View: 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, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_LINES_HIST_V ,
-
View: 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, product: ONT - Order Management , description: This view is used to get BSA history lines information, which is used in BSA organizer. , implementation_dba_data: APPS.OE_BLKT_LINES_HIST_V ,
-
View: 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, product: ONT - Order Management , description: This view is used to get BSA history lines information, which is used in BSA organizer. , implementation_dba_data: APPS.OE_BLKT_LINES_HIST_V ,