Search Results hz_cust_accounts
Overview
OE_HEADER_ACKS is a transactional table in the ONT (Order Management) schema that stores acknowledgement information exchanged between Oracle E-Business Suite and external trading partners for order headers. In Oracle EBS 12.1.1 and 12.2.2, this table functions as the inbound/outbound staging ground for acknowledgement documents processed through Order Management's XML/EDI message framework. When an order is transmitted to a customer or supplier and an acknowledgement is returned (for example, an Order Acknowledgment or Purchase Order Acknowledgment message), the header-level attributes of that acknowledgement are persisted here for validation, error handling, and downstream booking.
The table carries 342 documented columns in the 12.2.2 ETRM schema, reflecting its role as a wide, denormalized interface representation of the order header. Because it is keyed by HEADER_ID referencing OE_ORDER_HEADERS_ALL, a Data Vault heuristic classifies this object as a link — it associates an order header with its acknowledgement context and the parties, organizations, and reference data surrounding that acknowledgement. This classification is a modeling suggestion only; in native EBS terms the table is a transactional detail table, not a hub or satellite.
Key Information Stored
The most consequential columns fall into four groups:
- Identity and linkage:
HEADER_ID(FK toOE_ORDER_HEADERS_ALL),ORDER_NUMBER,ORIG_SYS_DOCUMENT_REF,VERSION_NUMBER, andXML_MESSAGE_ID. - Acknowledgement control:
ACKNOWLEDGMENT_FLAG,ACKNOWLEDGMENT_TYPE,FIRST_ACK_CODE,LAST_ACK_CODE,FIRST_ACK_DATE,LAST_ACK_DATE,CHANGE_SEQUENCE, andINTERFACE_STATUS/ERROR_FLAG. - Order context:
ORDERED_DATE,BOOKED_FLAG,BOOKED_DATE,CANCELLED_FLAG,CLOSED_FLAG,OPEN_FLAG,FLOW_STATUS_CODE, andORDER_TYPE_ID. - Party and pricing references:
CUSTOMER_ID,SHIP_TO_CUSTOMER_ID,INVOICE_CUSTOMER_ID,DELIVER_TO_CUSTOMER_ID,END_CUSTOMER_ID,PRICE_LIST_ID,SALESREP_ID,PAYMENT_TERM_ID, andTRANSACTIONAL_CURR_CODE.
The surrogate primary key is HEADER_ID. Business-key candidates include ORDER_NUMBER within an operating unit and ORIG_SYS_DOCUMENT_REF combined with ORDER_SOURCE_ID. Standard EBS audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) and the ATTRIBUTE1–ATTRIBUTE20/GLOBAL_ATTRIBUTE1–20 flexfields are present for extensibility.
Common Use Cases and Queries
Typical scenarios include reconciling inbound acknowledgement messages that failed validation, reporting on acknowledgement turnaround times, and auditing which orders received acknowledgements before booking.
- Pending acknowledgements by status:
SELECT ORDER_NUMBER, FIRST_ACK_CODE, LAST_ACK_DATE FROM OE_HEADER_ACKS WHERE ACKNOWLEDGMENT_FLAG = 'Y' AND INTERFACE_STATUS = 'PENDING'; - Error triage: filter on
ERROR_FLAG = 'Y'or non-nullINTERFACE_STATUSto isolate failed messages awaiting correction and resubmission. - Turnaround metrics: compute
LAST_ACK_DATE - FIRST_ACK_DATEperORDER_SOURCE_IDto measure trading-partner responsiveness. - Reporting joins: link to
OE_ORDER_HEADERS_ALLonHEADER_IDto enrich acknowledgement data with booked order detail.
Because the table is interface-oriented and can be large, queries should always be filtered by ORG_ID, ORDER_SOURCE_ID, or a date range on CHANGE_DATE/LAST_ACK_DATE to avoid full scans.
Related Objects
The documented foreign keys identify the principal related objects:
OE_ORDER_HEADERS_ALL— viaHEADER_ID; the parent order header.OE_ORDER_SOURCES— viaORDER_SOURCE_ID; defines the origin of the acknowledgement.SO_ORDER_TYPES_115_ALL— viaORDER_TYPE_ID; order classification.HZ_CUST_ACCOUNTSandHZ_CUST_ACCT_SITES_ALL— viaCUSTOMER_ID,SHIP_TO_CUSTOMER_ID,INVOICE_CUSTOMER_ID,DELIVER_TO_CUSTOMER_ID,END_CUSTOMER_ID, and the corresponding*_ADDRESS_IDcolumns.RA_SALESREPS_ALL,RA_TERMS_B, andRA_RULES— viaSALESREP_ID,PAYMENT_TERM_ID,CUSTOMER_PAYMENT_TERM_ID,INVOICING_RULE_ID, andACCOUNTING_RULE_ID.HR_ALL_ORGANIZATION_UNITS— viaSHIP_FROM_ORG_IDandSOLD_FROM_ORG_ID.FND_CURRENCIES— viaTRANSACTIONAL_CURR_CODE.OE_AGREEMENTS_B— viaAGREEMENT_ID.HZ_CONTACT_POINTS— viaSOLD_TO_PHONE_ID.
-
Table: OE_HEADER_ACKS
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_HEADER_ACKS, object_name:OE_HEADER_ACKS, status:VALID, product: ONT - Order Management , description: This tables stores information about the acknowledgements for Order Headers. , implementation_dba_data: ONT.OE_HEADER_ACKS ,
-
Table: OE_HEADER_ACKS
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_HEADER_ACKS, object_name:OE_HEADER_ACKS, status:VALID, product: ONT - Order Management , description: This tables stores information about the acknowledgements for Order Headers. , implementation_dba_data: ONT.OE_HEADER_ACKS ,
-
Table: OE_LINE_ACKS
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_LINE_ACKS, object_name:OE_LINE_ACKS, status:VALID, product: ONT - Order Management , description: This table stores information about the acknowledgements for Order Lines. , implementation_dba_data: ONT.OE_LINE_ACKS ,
-
Table: OE_LINE_ACKS
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_LINE_ACKS, object_name:OE_LINE_ACKS, status:VALID, product: ONT - Order Management , description: This table stores information about the acknowledgements for Order Lines. , implementation_dba_data: ONT.OE_LINE_ACKS ,
-
Table: OE_LINES_IFACE_ALL
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_LINES_IFACE_ALL, object_name:OE_LINES_IFACE_ALL, status:VALID, product: ONT - Order Management , description: This is a multi-org table for sales order lines open interface. , implementation_dba_data: ONT.OE_LINES_IFACE_ALL ,
-
Table: OE_LINES_IFACE_ALL
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_LINES_IFACE_ALL, object_name:OE_LINES_IFACE_ALL, status:VALID, product: ONT - Order Management , description: This is a multi-org table for sales order lines open interface. , implementation_dba_data: ONT.OE_LINES_IFACE_ALL ,
-
Table: OE_HEADERS_IFACE_ALL
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_HEADERS_IFACE_ALL, object_name:OE_HEADERS_IFACE_ALL, status:VALID, product: ONT - Order Management , description: This is a multi-org table for sales order headers open interface. , implementation_dba_data: ONT.OE_HEADERS_IFACE_ALL ,
-
Table: OE_HEADERS_IFACE_ALL
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_HEADERS_IFACE_ALL, object_name:OE_HEADERS_IFACE_ALL, status:VALID, product: ONT - Order Management , description: This is a multi-org table for sales order headers open interface. , implementation_dba_data: ONT.OE_HEADERS_IFACE_ALL ,
-
View: OEFV_ORDER_HEADERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_HEADERS, object_name:OEFV_ORDER_HEADERS, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEFV_ORDER_HEADERS ,
-
View: OEFV_ORDER_HEADERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_HEADERS, object_name:OEFV_ORDER_HEADERS, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEFV_ORDER_HEADERS ,
-
View: OEFV_CUSTOMER_AGREEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEFV_CUSTOMER_AGREEMENTS ONT.OEFV_CUSTOMER_AGREEMENTS, object_name:OEFV_CUSTOMER_AGREEMENTS, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEFV_CUSTOMER_AGREEMENTS ,
-
View: OEFV_CUSTOMER_AGREEMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.OEFV_CUSTOMER_AGREEMENTS ONT.OEFV_CUSTOMER_AGREEMENTS, object_name:OEFV_CUSTOMER_AGREEMENTS, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEFV_CUSTOMER_AGREEMENTS ,
-
View: OE_AS_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AS_ORDER_HEADERS_V, object_name:OE_AS_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: View to provide details of all existing orders in the Order Management. , implementation_dba_data: APPS.OE_AS_ORDER_HEADERS_V ,
-
View: OE_AS_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AS_ORDER_HEADERS_V, object_name:OE_AS_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: View to provide details of all existing orders in the Order Management. , implementation_dba_data: APPS.OE_AS_ORDER_HEADERS_V ,
-
View: OEFV_HEADER_END_CUSTOMER
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_HEADER_END_CUSTOMER, object_name:OEFV_HEADER_END_CUSTOMER, status:VALID, product: ONT - Order Management , description: Full BIS Business View for End Customer Information , implementation_dba_data: APPS.OEFV_HEADER_END_CUSTOMER ,
-
View: OE_AK_END_CUS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_END_CUS_V, object_name:OE_AK_END_CUS_V, status:VALID, product: ONT - Order Management , description: Used for Defaulting of End Customer , implementation_dba_data: APPS.OE_AK_END_CUS_V ,
-
View: OEFV_HEADER_END_CUSTOMER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_HEADER_END_CUSTOMER, object_name:OEFV_HEADER_END_CUSTOMER, status:VALID, product: ONT - Order Management , description: Full BIS Business View for End Customer Information , implementation_dba_data: APPS.OEFV_HEADER_END_CUSTOMER ,
-
View: OEFV_LINE_END_CUSTOMER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_LINE_END_CUSTOMER, object_name:OEFV_LINE_END_CUSTOMER, status:VALID, product: ONT - Order Management , description: Full BIS Business View for End Customer Information , implementation_dba_data: APPS.OEFV_LINE_END_CUSTOMER ,
-
View: OEFV_LINE_END_CUSTOMER
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_LINE_END_CUSTOMER, object_name:OEFV_LINE_END_CUSTOMER, status:VALID, product: ONT - Order Management , description: Full BIS Business View for End Customer Information , implementation_dba_data: APPS.OEFV_LINE_END_CUSTOMER ,
-
View: OE_AK_END_CUS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_END_CUS_V, object_name:OE_AK_END_CUS_V, status:VALID, product: ONT - Order Management , description: Used for Defaulting of End Customer , implementation_dba_data: APPS.OE_AK_END_CUS_V ,
-
View: OE_CUSTOMERS_ACTIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMERS_ACTIVE_V, object_name:OE_CUSTOMERS_ACTIVE_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUSTOMERS_ACTIVE_V ,
-
View: OE_CUSTOMERS_ACTIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMERS_ACTIVE_V, object_name:OE_CUSTOMERS_ACTIVE_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUSTOMERS_ACTIVE_V ,
-
View: OE_AK_INV_TO_CONTACT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_INV_TO_CONTACT_V, object_name:OE_AK_INV_TO_CONTACT_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_INV_TO_CONTACT_V ,
-
View: OE_AK_SHIP_TO_CONTACT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SHIP_TO_CONTACT_V, object_name:OE_AK_SHIP_TO_CONTACT_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_SHIP_TO_CONTACT_V ,
-
View: OE_AK_INV_TO_CONTACT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_INV_TO_CONTACT_V, object_name:OE_AK_INV_TO_CONTACT_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_INV_TO_CONTACT_V ,
-
View: OE_AR_CUSTOMER_PROFILES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AR_CUSTOMER_PROFILES_V, object_name:OE_AR_CUSTOMER_PROFILES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AR_CUSTOMER_PROFILES_V ,
-
View: OE_AK_SHIP_TO_CONTACT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SHIP_TO_CONTACT_V, object_name:OE_AK_SHIP_TO_CONTACT_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_SHIP_TO_CONTACT_V ,
-
View: OE_AR_CUSTOMER_PROFILES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AR_CUSTOMER_PROFILES_V, object_name:OE_AR_CUSTOMER_PROFILES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AR_CUSTOMER_PROFILES_V ,
-
View: OE_AK_DEL_TO_CONTACT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_DEL_TO_CONTACT_V, object_name:OE_AK_DEL_TO_CONTACT_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_DEL_TO_CONTACT_V ,
-
Table: OE_ORDER_HEADER_HISTORY
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_ORDER_HEADER_HISTORY, object_name:OE_ORDER_HEADER_HISTORY, status:VALID, product: ONT - Order Management , description: Stores history of attribute change for Order Headers , implementation_dba_data: ONT.OE_ORDER_HEADER_HISTORY ,
-
Table: OE_ORDER_LINES_HISTORY
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_ORDER_LINES_HISTORY, object_name:OE_ORDER_LINES_HISTORY, status:VALID, product: ONT - Order Management , description: Stores history of attribute change for Order Lines. , implementation_dba_data: ONT.OE_ORDER_LINES_HISTORY ,
-
View: OE_AK_END_CUS_CONT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_END_CUS_CONT_V, object_name:OE_AK_END_CUS_CONT_V, status:VALID, product: ONT - Order Management , description: Used for Defautling of End Customer Contact , implementation_dba_data: APPS.OE_AK_END_CUS_CONT_V ,
-
View: OE_AK_END_CUS_CONT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_END_CUS_CONT_V, object_name:OE_AK_END_CUS_CONT_V, status:VALID, product: ONT - Order Management , description: Used for Defautling of End Customer Contact , implementation_dba_data: APPS.OE_AK_END_CUS_CONT_V ,
-
View: OE_CUSTOMER_SITE_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_SITE_CONTACTS_V, object_name:OE_CUSTOMER_SITE_CONTACTS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUSTOMER_SITE_CONTACTS_V ,
-
View: OE_AK_DEL_TO_CONTACT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_DEL_TO_CONTACT_V, object_name:OE_AK_DEL_TO_CONTACT_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_DEL_TO_CONTACT_V ,
-
Table: OE_ORDER_HEADER_HISTORY
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_ORDER_HEADER_HISTORY, object_name:OE_ORDER_HEADER_HISTORY, status:VALID, product: ONT - Order Management , description: Stores history of attribute change for Order Headers , implementation_dba_data: ONT.OE_ORDER_HEADER_HISTORY ,
-
Table: OE_ORDER_LINES_HISTORY
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_ORDER_LINES_HISTORY, object_name:OE_ORDER_LINES_HISTORY, status:VALID, product: ONT - Order Management , description: Stores history of attribute change for Order Lines. , implementation_dba_data: ONT.OE_ORDER_LINES_HISTORY ,
-
View: OE_RA_CONTACTS_Q_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_RA_CONTACTS_Q_V, object_name:OE_RA_CONTACTS_Q_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_RA_CONTACTS_Q_V ,
-
View: OE_CUSTOMER_SITE_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_SITE_CONTACTS_V, object_name:OE_CUSTOMER_SITE_CONTACTS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUSTOMER_SITE_CONTACTS_V ,
-
View: OE_RA_CONTACTS_Q_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_RA_CONTACTS_Q_V, object_name:OE_RA_CONTACTS_Q_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_RA_CONTACTS_Q_V ,
-
View: OE_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_V, object_name:OE_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: View for Order header used in sales order form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_V ,
-
View: OE_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_V, object_name:OE_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: View for Order header used in sales order form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_V ,
-
View: OE_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CONTACTS_V, object_name:OE_CONTACTS_V, status:VALID, product: ONT - Order Management , description: This is view is based on ra_contacts , implementation_dba_data: APPS.OE_CONTACTS_V ,
-
View: OE_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CONTACTS_V, object_name:OE_CONTACTS_V, status:VALID, product: ONT - Order Management , description: This is view is based on ra_contacts , implementation_dba_data: APPS.OE_CONTACTS_V ,
-
View: OE_ORDER_HEADERS_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_HIST_V, object_name:OE_ORDER_HEADERS_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to retrieve the Order History. This is used by the history form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_HIST_V ,
-
View: OE_CUSTOMER_ADDRESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_ADDRESSES_V, object_name:OE_CUSTOMER_ADDRESSES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUSTOMER_ADDRESSES_V ,
-
View: OE_ORDER_HEADERS_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_HIST_V, object_name:OE_ORDER_HEADERS_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to retrieve the Order History. This is used by the history form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_HIST_V ,
-
View: OE_AK_SOLD_TO_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SOLD_TO_ORGS_V, object_name:OE_AK_SOLD_TO_ORGS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_SOLD_TO_ORGS_V ,
-
View: OE_CUSTOMER_ADDRESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_ADDRESSES_V, object_name:OE_CUSTOMER_ADDRESSES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUSTOMER_ADDRESSES_V ,
-
View: OE_BLKT_HEADERS_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLKT_HEADERS_HIST_V, object_name:OE_BLKT_HEADERS_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA history headers information, and which is used in BSA organizer. , implementation_dba_data: APPS.OE_BLKT_HEADERS_HIST_V ,