Search Results user_item_description
Overview
The OE_ORDER_LINES_AUDIT_V view is a reporting and integration construct in the Oracle E-Business Suite Order Management (ONT) module, owned by the APPS schema. It exposes the auditable history of order lines by combining header context, line-level history records, and reason-code descriptions into a single denormalized result set. In Oracle EBS 12.1.1 and 12.2.2 the object is registered as a VALID view, meaning it is a supported component of the data dictionary rather than an ad hoc user object.
Its primary role is to support audit trails, historical change analysis, and downstream reporting. Because order lines are frequently modified after entry—pricing corrections, quantity adjustments, schedule changes, and cancellations—the base transaction tables retain only the current state. OE_ORDER_LINES_AUDIT_V surfaces the versioned history so that users and integrators can reconstruct what changed, when, by whom, and under which responsibility. It is commonly consumed by Order Management inquiry screens, custom reports, and extract programs that feed data warehouses.
Underlying Base Objects
The documented ETRM metadata for 12.2.2 identifies three referenced base objects, all accessed through APPS synonyms:
- OE_ORDER_HEADERS_ALL — provides header-level attributes such as ORDER_NUMBER and ORDER_TYPE_ID, used to anchor each historical line record to its parent order.
- OE_ORDER_LINES_HISTORY — the principal source of the view, holding the versioned line snapshots (HIST_CREATED_BY, HIST_CREATION_DATE, HIST_TYPE_CODE, HIST_COMMENTS, and the audited line attributes).
- OE_REASONS — supplies the descriptive text associated with the REASON_CODE captured on each history record.
Aliases in the view text (OLH for the history/lines source, OH for headers) confirm the join strategy: header rows are joined to their line history rows, and reason codes are resolved to user-facing descriptions. Additional referenced tables appear in the full view SQL, but the three objects above are the documented dependencies.
Key Columns
The view exposes a broad set of columns, of which the following are most significant for audit and reporting work:
- HIST_CREATED_BY / HIST_CREATION_DATE — the user and timestamp of the historical change; the foundation of any audit trail.
- HIST_TYPE_CODE / HIST_COMMENTS — the category of change and any free-text note recorded with it.
- HEADER_ID / LINE_ID — keys linking the record to the order header and the specific line.
- ORDER_NUMBER / ORDER_TYPE_ID / LINE_NUMBER — human-readable identification of the affected order and line.
- INVENTORY_ITEM_ID — the item on the line. Note that the view does not expose a user-facing item description column; users searching for "user_item_description" must resolve this by joining to MTL_SYSTEM_ITEMS_VL or MTL_SYSTEM_ITEMS_TL on INVENTORY_ITEM_ID (and ORGANIZATION_ID where applicable).
- ORDERED_QUANTITY2, SHIPPED_QUANTITY, FULFILLED_QUANTITY, PRICING_QUANTITY — the quantity measures whose changes are typically being audited.
- UNIT_LIST_PRICE / UNIT_SELLING_PRICE — pricing values captured at each history point.
- SHIP_TO_ORG_ID, SHIP_FROM_ORG_ID, INVOICE_TO_ORG_ID, DELIVER_TO_ORG_ID — party and organization context.
- PROMISE_DATE, SCHEDULE_SHIP_DATE, REQUEST_DATE — scheduling attributes frequently subject to change.
Common Use Cases and Queries
Typical scenarios include tracing the change history of a single order line, reporting all price or quantity revisions within a date range, and feeding audit extracts to external systems. A representative query follows:
SELECT order_number, line_number, hist_type_code, hist_comments, hist_created_by, hist_creation_date FROM oe_order_lines_audit_v WHERE order_number = :p_order_number ORDER BY hist_creation_date;SELECT h.order_number, h.line_number, h.inventory_item_id, msi.description, h.unit_selling_price, h.hist_creation_date FROM oe_order_lines_audit_v h, mtl_system_items_vl msi WHERE h.inventory_item_id = msi.inventory_item_id AND h.hist_creation_date >= :p_from_date;SELECT hist_type_code, COUNT(*) FROM oe_order_lines_audit_v WHERE hist_creation_date BETWEEN :p_start AND :p_end GROUP BY hist_type_code;
Bind variables should be used for all predicates, and queries against history tables should be filtered by date or key to avoid full scans. Because the view is not a table, no DML is permitted; any corrective action must target the underlying history and line tables through supported APIs.
-
View: OE_ORDER_LINES_AUDIT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_AUDIT_V, object_name:OE_ORDER_LINES_AUDIT_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_LINES_AUDIT_V ,
-
View: OE_ORDER_LINES_AUDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_AUDIT_V, object_name:OE_ORDER_LINES_AUDIT_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_LINES_AUDIT_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.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_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_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: 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 ,