Search Results op_ordr_hdr
Overview
The OP_ORDR_HDR table is the central Sales Order Header table within the Process Manufacturing Logistics (GML) module of Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2. It serves as the master record for a sales order, storing high-level transactional and administrative information that governs the entire order lifecycle. As a core transactional entity, it establishes the business context—such as customer, organization, currency, and terms—for all associated line items and subsequent fulfillment, shipping, and invoicing processes. Its integrity is maintained through a complex network of foreign key relationships to foundational master data tables across the EBS suite.
Key Information Stored
The table's primary key is ORDER_ID, a unique system-generated identifier. A critical composite unique key (OP_ORDR_HDR_U1) enforces business uniqueness across the combination of ORDER_TYPE, ORGN_CODE, ORDER_NO, and RELEASE_NO. This structure directly supports the user's search context for "release_no," indicating that the RELEASE_NO column is integral for identifying specific releases or revisions of an order number within a given organization and order type. Other pivotal columns include ORDER_STATUS, which links to the status codes table (OP_ORDR_STS_B), and various customer identifiers (SOLDTOCUST_ID, SHIPCUST_ID, BILLCUST_ID) that link to the customer master (OP_CUST_MST). Additional key fields manage shipping (SHIP_MTHD, SHIPPER_CODE), financial terms (TERMS_CODE, BILLING_CURRENCY), and organizational context (ORGN_CODE).
Common Use Cases and Queries
This table is fundamental for order management reporting, data validation, and integration workflows. A common use case is retrieving a specific order and its header details using the business key, which is particularly relevant for release-based order tracking. For example, to find a specific order release:
- SELECT * FROM GML.OP_ORDR_HDR WHERE ORGN_CODE = 'ORG1' AND ORDER_TYPE = 'SO' AND ORDER_NO = '1000' AND RELEASE_NO = '1';
Another frequent scenario involves joining with the detail lines (OP_ORDR_DTL) for comprehensive order analysis:
- SELECT hdr.ORDER_NO, hdr.RELEASE_NO, hdr.ORDER_STATUS, dtl.LINE_NO, dtl.ITEM_ID FROM GML.OP_ORDR_HDR hdr JOIN GML.OP_ORDR_DTL dtl ON hdr.ORDER_ID = dtl.ORDER_ID WHERE hdr.ORGN_CODE = :p_org;
Reporting on order status summaries or validating customer and organizational data integrity against referenced master tables are also standard operational queries.
Related Objects
OP_ORDR_HDR is a pivotal hub with extensive relationships. Its primary child tables, which store dependent transactional data, include:
- OP_ORDR_DTL: Stores the line items for the order, joined on ORDER_ID.
- OP_ORDR_CHG: Tracks changes to the order, joined on ORDER_ID.
- OP_AUDT_MST: References the order for audit purposes via ORDER_ID.
It references numerous master data and code tables via foreign keys, including:
- OP_CUST_MST: For customer data (SOLDTOCUST_ID, SHIPCUST_ID, etc.).
- SY_ORGN_MST / SY_ORGN_MST_B: For organization data (ORGN_CODE).
- OP_ORDR_TYP_B: For order type (ORDER_TYPE).
- OP_ORDR_STS_B: For order status (ORDER_STATUS).
- GL_CURR_MST: For currency (BILLING_CURRENCY).
- IC_WHSE_MST: For warehouse data (FROM_WHSE, TO_WHSE).
- OP_TERM_MST, OP_SHIP_MTH, OP_FRGT_MTH, OP_SLSR_MST: For terms, shipping, freight, and salesperson data.
-
Table: OP_ORDR_HDR
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_HDR, object_name:OP_ORDR_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Header table. , implementation_dba_data: GML.OP_ORDR_HDR ,
-
Table: OP_ORDR_HDR
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_HDR, object_name:OP_ORDR_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Header table. , implementation_dba_data: GML.OP_ORDR_HDR ,
-
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.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_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 ,
-
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 ,
-
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_ORDR_TYP_B
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_TYP_B, object_name:OP_ORDR_TYP_B, status:VALID, product: GML - Process Manufacturing Logistics , description: User-defined order types and descriptions. , implementation_dba_data: GML.OP_ORDR_TYP_B ,
-
Table: OP_ORDR_TYP_B
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_TYP_B, object_name:OP_ORDR_TYP_B, status:VALID, product: GML - Process Manufacturing Logistics , description: User-defined order types and descriptions. , implementation_dba_data: GML.OP_ORDR_TYP_B ,
-
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_MST
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_AUDT_MST, object_name:OP_AUDT_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Header record which links all change records for a sales orderdetail line. , implementation_dba_data: GML.OP_AUDT_MST ,
-
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_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_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_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 ,
-
View: GML_GPOAO_ORDER_TEXT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GPOAO_ORDER_TEXT_V, object_name:GML_GPOAO_ORDER_TEXT_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Header Text view , implementation_dba_data: APPS.GML_GPOAO_ORDER_TEXT_V ,
-
View: GML_GPOAO_ORDER_TEXT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GPOAO_ORDER_TEXT_V, object_name:GML_GPOAO_ORDER_TEXT_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Header Text view , implementation_dba_data: APPS.GML_GPOAO_ORDER_TEXT_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_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_MST
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_AUDT_MST, object_name:OP_AUDT_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Header record which links all change records for a sales orderdetail line. , implementation_dba_data: GML.OP_AUDT_MST ,
-
View: GML_GASNO_ORDER_TEXT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GASNO_ORDER_TEXT_V, object_name:GML_GASNO_ORDER_TEXT_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Header Text view , implementation_dba_data: APPS.GML_GASNO_ORDER_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_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 ,
-
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_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 ,
-
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_GASNO_ORDER_TEXT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GASNO_ORDER_TEXT_V, object_name:GML_GASNO_ORDER_TEXT_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Header Text view , implementation_dba_data: APPS.GML_GASNO_ORDER_TEXT_V ,
-
Table: OP_FRGT_MTH
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_FRGT_MTH, object_name:OP_FRGT_MTH, status:VALID, product: GML - Process Manufacturing Logistics , description: Freight bill method codes . , implementation_dba_data: GML.OP_FRGT_MTH ,
-
Table: OP_FRGT_MTH
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_FRGT_MTH, object_name:OP_FRGT_MTH, status:VALID, product: GML - Process Manufacturing Logistics , description: Freight bill method codes . , implementation_dba_data: GML.OP_FRGT_MTH ,
-
View: GML_GPOAO_ORDER_CHARGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GPOAO_ORDER_CHARGES_V, object_name:GML_GPOAO_ORDER_CHARGES_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Header Charges view , implementation_dba_data: APPS.GML_GPOAO_ORDER_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 ,
-
View: GML_GASNO_ORDER_CHARGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GASNO_ORDER_CHARGES_V, object_name:GML_GASNO_ORDER_CHARGES_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Header Charges view , implementation_dba_data: APPS.GML_GASNO_ORDER_CHARGES_V ,
-
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 ,
-
View: OP_ORDR_HDR_VW1
12.1.1
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_SHIP_MST
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_SHIP_MST, object_name:OP_SHIP_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Carrier (shipper) codes . , implementation_dba_data: GML.OP_SHIP_MST ,
-
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_GPOAO_ORDER_CHARGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GPOAO_ORDER_CHARGES_V, object_name:GML_GPOAO_ORDER_CHARGES_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Header Charges view , implementation_dba_data: APPS.GML_GPOAO_ORDER_CHARGES_V ,
-
Table: OP_SHIP_MST
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_SHIP_MST, object_name:OP_SHIP_MST, status:VALID, product: GML - Process Manufacturing Logistics , description: Carrier (shipper) codes . , implementation_dba_data: GML.OP_SHIP_MST ,
-
View: GML_GASNO_ORDER_CHARGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.GML_GASNO_ORDER_CHARGES_V, object_name:GML_GASNO_ORDER_CHARGES_V, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Header Charges view , implementation_dba_data: APPS.GML_GASNO_ORDER_CHARGES_V ,
-
Table: OP_PRSL_HDR
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_PRSL_HDR, object_name:OP_PRSL_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Order Profile Header and Blanket Sales Order Header. , implementation_dba_data: GML.OP_PRSL_HDR ,
-
Table: OP_TEXT_HDR
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_TEXT_HDR, object_name:OP_TEXT_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Header text table for the Order Fulfillment application. , implementation_dba_data: GML.OP_TEXT_HDR ,
-
Table: OP_TEXT_HDR
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_TEXT_HDR, object_name:OP_TEXT_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Header text table for the Order Fulfillment application. , implementation_dba_data: GML.OP_TEXT_HDR ,
-
Table: OP_PRSL_HDR
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_PRSL_HDR, object_name:OP_PRSL_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Order Profile Header and Blanket Sales Order Header. , implementation_dba_data: GML.OP_PRSL_HDR ,