Search Results op_ordr_dtl
Overview
The OP_ORDR_DTL table is a core transactional data store within the Oracle E-Business Suite (EBS) Process Manufacturing Logistics (GML) module. It serves as the detailed line-level repository for sales and distribution orders, capturing all granular information associated with individual order lines. Each record in this table represents a specific item or service requested on an order, linked to a parent header record in the OP_ORDR_HDR table. Its primary role is to manage the lifecycle of order lines, from entry and pricing through to fulfillment and invoicing, integrating deeply with inventory, pricing, shipping, and customer master data.
Key Information Stored
The table's structure is defined by a composite primary key (ORDER_ID, LINE_ID), which uniquely identifies every order line within the system. Key columns and the data they hold include the LINE_ID for sequence, ITEM_ID linking to the IC_ITEM_MST_B table for the ordered product, and various quantity fields (e.g., ORDER_QTY, SHIP_QTY). Critical business rule columns are also present, such as PRICEFF_ID for applied pricing, LINE_STATUS for workflow tracking, and SHIPCUST_ID for the shipping customer. Financial and logistical attributes are extensively covered, including columns for FOB_CODE, TERMS_CODE, SHIP_MTHD, and multiple currency fields (BASE_CURRENCY, BILLING_CURRENCY). The table also maintains references for quality control (QC_GRADE_WANTED), sales representatives (SLSREP_CODE), and textual instructions (TEXT_CODE).
Common Use Cases and Queries
This table is central to operational reporting and process execution. Common use cases include generating pick slips and packing lists by querying open lines for a warehouse, analyzing line-level profitability by joining with pricing and cost tables, and tracking order fulfillment status. Support teams frequently query it to investigate pricing discrepancies or shipment holds (HOLDREAS_CODE). A typical SQL pattern retrieves all lines for a specific order or customer, often joining with header and item master data:
SELECT ood.line_id, ood.item_id, iim.item_no, ood.order_qty, ood.ship_qty, ood.line_status FROM gml.op_ordr_dtl ood JOIN ic_item_mst iim ON ood.item_id = iim.item_id WHERE ood.order_id = :p_order_id ORDER BY ood.line_id;
Another common reporting query aggregates sales by item or sales representative over a date range, requiring a join to OP_ORDR_HDR for the order date.
Related Objects
OP_ORDR_DTL maintains extensive foreign key relationships, acting as a hub that connects order lines to master and transactional data across EBS. Its most critical relationship is with the parent header table, OP_ORDR_HDR, via ORDER_ID. Key documented relationships, as per the ETRM, include:
- Master Data: IC_ITEM_MST_B / IC_ITEM_MST (ITEM_ID), OP_CUST_MST (multiple customer IDs), IC_WHSE_MST (FROM_WHSE, TO_WHSE), GL_CURR_MST (currency codes).
- Pricing & Sales: OP_PRCE_EFF (PRICEFF_ID), OP_SLSR_MST (SLSREP_CODE), OP_PRSL_DTL (PRESALES_ORDLINE_ID).
- Shipping & Logistics: OP_SHIP_MTH (SHIP_MTHD), OP_BILL_LAD (BOL_ID), OP_PORT_MST (embarkation/debarkation ports).
- Workflow & Controls: OP_ORDR_STS_B (LINE_STATUS), SY_REAS_CDS_B (CHANGEREAS_CODE), OP_HOLD_CDS (HOLDREAS_CODE).
- Terms & Conditions: OP_TERM_MST (TERMS_CODE), OP_FOBC_MST (FOB_CODE), OP_TEXT_HDR (TEXT_CODE).
-
Table: OP_ORDR_DTL
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_DTL, object_name:OP_ORDR_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Order detail (order lines). , implementation_dba_data: GML.OP_ORDR_DTL ,
-
Table: OP_ORDR_DTL
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_DTL, object_name:OP_ORDR_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Order detail (order lines). , implementation_dba_data: GML.OP_ORDR_DTL ,
-
Table: OP_CUST_MST
12.1.1
product: GML - Process Manufacturing Logistics , description: Customer master. , implementation_dba_data: Not implemented in this database ,
-
Table: OP_CUST_MST
12.2.2
product: GML - Process Manufacturing Logistics , description: Customer master. , implementation_dba_data: Not implemented in this database ,
-
Table: OP_PORT_MST
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_PORT_MST, object_name:OP_PORT_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Shipping/receiving port codes. , implementation_dba_data: GML.OP_PORT_MST ,
-
Table: OP_PORT_MST
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_PORT_MST, object_name:OP_PORT_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Shipping/receiving port codes. , implementation_dba_data: GML.OP_PORT_MST ,
-
Table: OP_ORDR_DTL_EFC
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_DTL_EFC, object_name:OP_ORDR_DTL_EFC, status:VALID, product: GML - Process Manufacturing Logistics , description: Shadow table of OP_ORDR_DTL for EFC migration. , implementation_dba_data: GML.OP_ORDR_DTL_EFC ,
-
View: GML_GASNO_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GASNO_ORDERS_V, object_name:GML_GASNO_ORDERS_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Header view , implementation_dba_data: APPS.GML_GASNO_ORDERS_V ,
-
Table: OP_ORDR_DTL_EFC
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_DTL_EFC, object_name:OP_ORDR_DTL_EFC, status:VALID, product: GML - Process Manufacturing Logistics , description: Shadow table of OP_ORDR_DTL for EFC migration. , implementation_dba_data: GML.OP_ORDR_DTL_EFC ,
-
View: GML_GASNO_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GASNO_ORDERS_V, object_name:GML_GASNO_ORDERS_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Header view , implementation_dba_data: APPS.GML_GASNO_ORDERS_V ,
-
Table: OP_PRCE_CDS
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_PRCE_CDS, object_name:OP_PRCE_CDS, status:VALID, product: GML - Process Manufacturing Logistics , description: Order Entry Price Reason Codes. , implementation_dba_data: GML.OP_PRCE_CDS ,
-
Table: OP_ORDR_STS_B
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_STS_B, object_name:OP_ORDR_STS_B, status:VALID, product: GML - Process Manufacturing Logistics , description: Order status codes and descriptions. , implementation_dba_data: GML.OP_ORDR_STS_B ,
-
Table: OP_AUDT_DTL
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_AUDT_DTL, object_name:OP_AUDT_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Audit Trail by order line , implementation_dba_data: GML.OP_AUDT_DTL ,
-
Table: OP_PRCE_CDS
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_PRCE_CDS, object_name:OP_PRCE_CDS, status:VALID, product: GML - Process Manufacturing Logistics , description: Order Entry Price Reason Codes. , implementation_dba_data: GML.OP_PRCE_CDS ,
-
Table: OP_HOLD_CDS
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_HOLD_CDS, object_name:OP_HOLD_CDS, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales order hold reason codes. , implementation_dba_data: GML.OP_HOLD_CDS ,
-
Table: OP_ORDR_STS_B
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_STS_B, object_name:OP_ORDR_STS_B, status:VALID, product: GML - Process Manufacturing Logistics , description: Order status codes and descriptions. , implementation_dba_data: GML.OP_ORDR_STS_B ,
-
Table: OP_HOLD_CDS
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_HOLD_CDS, object_name:OP_HOLD_CDS, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales order hold reason codes. , implementation_dba_data: GML.OP_HOLD_CDS ,
-
Table: OP_CUST_CON
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_CUST_CON, object_name:OP_CUST_CON, status:VALID, product: GML - Process Manufacturing Logistics , description: Customer contact information. , implementation_dba_data: GML.OP_CUST_CON ,
-
Table: OP_COMMISSION
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_COMMISSION, object_name:OP_COMMISSION, status:VALID, product: GML - Process Manufacturing Logistics , description: Commission code header. , implementation_dba_data: GML.OP_COMMISSION ,
-
Table: OP_CUST_CON
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_CUST_CON, object_name:OP_CUST_CON, status:VALID, product: GML - Process Manufacturing Logistics , description: Customer contact information. , implementation_dba_data: GML.OP_CUST_CON ,
-
Table: OP_ORDR_CHG
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_CHG, object_name:OP_ORDR_CHG, status:VALID, product: GML - Process Manufacturing Logistics , description: Order and order line charges. , implementation_dba_data: GML.OP_ORDR_CHG ,
-
Table: OP_ORDR_CHG
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_CHG, object_name:OP_ORDR_CHG, status:VALID, product: GML - Process Manufacturing Logistics , description: Order and order line charges. , implementation_dba_data: GML.OP_ORDR_CHG ,
-
Table: OP_AUDT_DTL
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_AUDT_DTL, object_name:OP_AUDT_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Audit Trail by order line , implementation_dba_data: GML.OP_AUDT_DTL ,
-
View: GML_GASNO_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GASNO_SUM_V, object_name:GML_GASNO_SUM_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Total Weights view , implementation_dba_data: APPS.GML_GASNO_SUM_V ,
-
Table: OP_LKBX_MST
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_LKBX_MST, object_name:OP_LKBX_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Lockbox codes. , implementation_dba_data: GML.OP_LKBX_MST ,
-
Table: OP_PKGD_ITM
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_PKGD_ITM, object_name:OP_PKGD_ITM, status:VALID, product: GML - Process Manufacturing Logistics , description: Packaged item names and shipping weights. , implementation_dba_data: GML.OP_PKGD_ITM ,
-
View: GML_GPOAO_DETAIL_TEXT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GPOAO_DETAIL_TEXT_V, object_name:GML_GPOAO_DETAIL_TEXT_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Detail Text view , implementation_dba_data: APPS.GML_GPOAO_DETAIL_TEXT_V ,
-
View: GML_GASNO_SUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GASNO_SUM_V, object_name:GML_GASNO_SUM_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Total Weights view , implementation_dba_data: APPS.GML_GASNO_SUM_V ,
-
Table: OP_LKBX_MST
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_LKBX_MST, object_name:OP_LKBX_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Lockbox codes. , implementation_dba_data: GML.OP_LKBX_MST ,
-
Table: OP_COMMISSION
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_COMMISSION, object_name:OP_COMMISSION, status:VALID, product: GML - Process Manufacturing Logistics , description: Commission code header. , implementation_dba_data: GML.OP_COMMISSION ,
-
Table: OP_GNRC_ITM
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_GNRC_ITM, object_name:OP_GNRC_ITM, status:VALID, product: GML - Process Manufacturing Logistics , description: Customer and generic (alternate) names for items. , implementation_dba_data: GML.OP_GNRC_ITM ,
-
Table: OP_PKGD_ITM
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_PKGD_ITM, object_name:OP_PKGD_ITM, status:VALID, product: GML - Process Manufacturing Logistics , description: Packaged item names and shipping weights. , implementation_dba_data: GML.OP_PKGD_ITM ,
-
View: GML_GASNO_DETAIL_TEXT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GASNO_DETAIL_TEXT_V, object_name:GML_GASNO_DETAIL_TEXT_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Detail Text view , implementation_dba_data: APPS.GML_GASNO_DETAIL_TEXT_V ,
-
Table: OP_TERM_MST
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_TERM_MST, object_name:OP_TERM_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Payment terms codes. , implementation_dba_data: GML.OP_TERM_MST ,
-
Table: OP_FOBC_MST
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_FOBC_MST, object_name:OP_FOBC_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Free on Board (FOB) codes. , implementation_dba_data: GML.OP_FOBC_MST ,
-
Table: OP_BILL_LAD
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_BILL_LAD, object_name:OP_BILL_LAD, status:VALID, product: GML - Process Manufacturing Logistics , description: Header information for a shipment. , implementation_dba_data: GML.OP_BILL_LAD ,
-
Table: OP_SHIP_MTH
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_SHIP_MTH, object_name:OP_SHIP_MTH, status:VALID, product: GML - Process Manufacturing Logistics , description: Shipping method codes. , implementation_dba_data: GML.OP_SHIP_MTH ,
-
View: GML_GPOAO_DETAIL_TEXT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GPOAO_DETAIL_TEXT_V, object_name:GML_GPOAO_DETAIL_TEXT_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Detail Text view , implementation_dba_data: APPS.GML_GPOAO_DETAIL_TEXT_V ,
-
View: GML_GASNO_DETAIL_TEXT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GASNO_DETAIL_TEXT_V, object_name:GML_GASNO_DETAIL_TEXT_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Detail Text view , implementation_dba_data: APPS.GML_GASNO_DETAIL_TEXT_V ,
-
Table: OP_BILL_LAD
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_BILL_LAD, object_name:OP_BILL_LAD, status:VALID, product: GML - Process Manufacturing Logistics , description: Header information for a shipment. , implementation_dba_data: GML.OP_BILL_LAD ,
-
Table: OP_GNRC_ITM
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_GNRC_ITM, object_name:OP_GNRC_ITM, status:VALID, product: GML - Process Manufacturing Logistics , description: Customer and generic (alternate) names for items. , implementation_dba_data: GML.OP_GNRC_ITM ,
-
Table: OP_TERM_MST
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_TERM_MST, object_name:OP_TERM_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Payment terms codes. , implementation_dba_data: GML.OP_TERM_MST ,
-
View: OP_ORDR_HDR_VW1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.OP_ORDR_HDR_VW1, object_name:OP_ORDR_HDR_VW1, status:VALID, product: GML - Process Manufacturing Logistics , description: View containing order header information used for lookups. , implementation_dba_data: APPS.OP_ORDR_HDR_VW1 ,
-
Table: OP_SLSR_MST
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_SLSR_MST, object_name:OP_SLSR_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales representative master table. , implementation_dba_data: GML.OP_SLSR_MST ,
-
View: GML_GASNO_DETAIL_CHARGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GASNO_DETAIL_CHARGES_V, object_name:GML_GASNO_DETAIL_CHARGES_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Detail Charges view , implementation_dba_data: APPS.GML_GASNO_DETAIL_CHARGES_V ,
-
Table: OP_SHIP_MTH
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_SHIP_MTH, object_name:OP_SHIP_MTH, status:VALID, product: GML - Process Manufacturing Logistics , description: Shipping method codes. , implementation_dba_data: GML.OP_SHIP_MTH ,
-
View: GML_GPOAO_DETAIL_CHARGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GPOAO_DETAIL_CHARGES_V, object_name:GML_GPOAO_DETAIL_CHARGES_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Detail Charges view , implementation_dba_data: APPS.GML_GPOAO_DETAIL_CHARGES_V ,
-
Table: OP_FOBC_MST
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_FOBC_MST, object_name:OP_FOBC_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Free on Board (FOB) codes. , implementation_dba_data: GML.OP_FOBC_MST ,
-
Table: OP_SLSR_MST
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_SLSR_MST, object_name:OP_SLSR_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales representative master table. , implementation_dba_data: GML.OP_SLSR_MST ,
-
Table: OP_PRCE_EFF
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_PRCE_EFF, object_name:OP_PRCE_EFF, status:VALID, product: GML - Process Manufacturing Logistics , description: Pricing effectivities to establish active price lists, contracts or charges. , implementation_dba_data: GML.OP_PRCE_EFF ,