Search Results ra_customers
Overview
The SO_HEADERS_INTERFACE_ALL table is a critical staging table within the Oracle E-Business Suite (EBS) Order Entry (OE) module, specifically for versions 12.1.1 and 12.2.2. It serves as the primary interface for importing sales order header information from external, non-Oracle systems, flat files, or other custom data sources into the core transactional tables of the Order Management suite. Its fundamental role is to act as a holding area where data is validated, enriched, and processed by the Order Import concurrent program (OE_ORDER_PUB.Process_Order) before being transferred to the base transactional tables, such as OE_ORDER_HEADERS_ALL. This staged import process ensures data integrity and allows for error correction before orders become active in the system.
Key Information Stored
The table stores a comprehensive set of attributes that define a sales order's header-level information. The primary key is a composite of the BATCH_ID and ORIGINAL_SYSTEM_REFERENCE, which uniquely identifies each imported record. Key columns, as indicated by the extensive foreign key relationships, include ORDER_TYPE_ID (linking to SO_ORDER_TYPES_115_ALL), CUSTOMER_ID and SHIP_TO_CUSTOMER_ID (linking to RA_CUSTOMERS), and ORDER_SOURCE_ID (linking to SO_ORDER_SOURCES_115). Other essential fields are PRICE_LIST_ID, CURRENCY_CODE, SHIP_ADDRESS_ID, SALESREP_ID, and various rule IDs for accounting and invoicing. Critical process control columns include PROCESS_FLAG, which indicates the record's status (e.g., 'PENDING', 'ERROR', 'PROCESSED'), and ERROR_MESSAGE, which stores validation errors for failed records.
Common Use Cases and Queries
The primary use case is the bulk import of sales orders via the Order Import concurrent program. Custom inbound interfaces or data conversion programs populate this table, after which the standard program validates and creates orders. Common SQL queries involve monitoring the interface for errors or pending records. A typical diagnostic query is:
SELECT batch_id, original_system_reference, process_flag, error_message FROM oe.so_headers_interface_all WHERE process_flag = 'ERROR' AND NVL(TRUNC(creation_date), TRUNC(SYSDATE)) = TRUNC(SYSDATE);
Another frequent pattern is joining with related interface tables, such as SO_LINES_INTERFACE_ALL, to obtain a complete view of a pending order: SELECT shi.*, sli.* FROM oe.so_headers_interface_all shi, oe.so_lines_interface_all sli WHERE shi.original_system_reference = sli.original_system_header_ref AND shi.process_flag = 'PENDING'.
Related Objects
- SO_LINES_INTERFACE_ALL: The companion interface table for storing imported order line details, linked via ORIGINAL_SYSTEM_HEADER_REF.
- OE_ORDER_HEADERS_ALL: The primary transactional table where successfully imported header records are ultimately stored.
- Key Foreign Key Tables: As per the metadata, the table has numerous foreign key dependencies, including RA_CUSTOMERS (for customer data), SO_ORDER_TYPES_115_ALL (for order type), RA_ADDRESSES_ALL (for ship-to address), SO_PRICE_LISTS_B, and RA_TERMS_B. These relationships enforce referential integrity during the import validation process.
- Concurrent Program: The Order Import program (typically seeded as "Import Orders") is the primary consumer of this table, executing the PL/SQL API OE_ORDER_PUB.Process_Order.
-
Table: SO_HEADERS_INTERFACE_ALL
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_HEADERS_INTERFACE_ALL, object_name:SO_HEADERS_INTERFACE_ALL, status:VALID, product: OE - Order Entry , description: Imported order header information , implementation_dba_data: OE.SO_HEADERS_INTERFACE_ALL ,
-
Table: SO_HEADERS_INTERFACE_ALL
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_HEADERS_INTERFACE_ALL, object_name:SO_HEADERS_INTERFACE_ALL, status:VALID, product: OE - Order Entry , description: Imported order header information , implementation_dba_data: OE.SO_HEADERS_INTERFACE_ALL ,
-
View: SO_SHIP_TO_LOCATIONS_CR_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_SHIP_TO_LOCATIONS_CR_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_CUSTOMERS_ACTIVE_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
Table: SO_HOLD_SOURCES_ALL
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_HOLD_SOURCES_ALL, object_name:SO_HOLD_SOURCES_ALL, status:VALID, product: OE - Order Entry , description: Applied holds , implementation_dba_data: OE.SO_HOLD_SOURCES_ALL ,
-
View: WSH_ORDER_VALUESET_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
Table: WSH_DELIVERY_TEMPLATES
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_DELIVERY_TEMPLATES, object_name:WSH_DELIVERY_TEMPLATES, status:VALID, product: OE - Order Entry , description: Shipping Delivery Templates , implementation_dba_data: OE.WSH_DELIVERY_TEMPLATES ,
-
Table: SO_ORDER_TYPES_115_ALL
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_ORDER_TYPES_115_ALL, object_name:SO_ORDER_TYPES_115_ALL, status:VALID, product: OE - Order Entry , description: Order types , implementation_dba_data: OE.SO_ORDER_TYPES_115_ALL ,
-
Table: SO_DISCOUNT_CUSTOMERS
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_DISCOUNT_CUSTOMERS, object_name:SO_DISCOUNT_CUSTOMERS, status:VALID, product: OE - Order Entry , description: Discounts for specific customers , implementation_dba_data: OE.SO_DISCOUNT_CUSTOMERS ,
-
Table: SO_PICKING_BATCHES_ALL
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_PICKING_BATCHES_ALL, object_name:SO_PICKING_BATCHES_ALL, status:VALID, product: OE - Order Entry , description: Released order batches , implementation_dba_data: OE.SO_PICKING_BATCHES_ALL ,
-
Table: SO_DISCOUNT_CUSTOMERS
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_DISCOUNT_CUSTOMERS, object_name:SO_DISCOUNT_CUSTOMERS, status:VALID, product: OE - Order Entry , description: Discounts for specific customers , implementation_dba_data: OE.SO_DISCOUNT_CUSTOMERS ,
-
Table: SO_HOLD_RELEASES
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_HOLD_RELEASES, object_name:SO_HOLD_RELEASES, status:VALID, product: OE - Order Entry , description: Hold release reasons , implementation_dba_data: OE.SO_HOLD_RELEASES ,
-
Table: WSH_DELIVERY_TEMPLATES
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_DELIVERY_TEMPLATES, object_name:WSH_DELIVERY_TEMPLATES, status:VALID, product: OE - Order Entry , description: Shipping Delivery Templates , implementation_dba_data: OE.WSH_DELIVERY_TEMPLATES ,
-
Table: WSH_DELIVERIES
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_DELIVERIES, object_name:WSH_DELIVERIES, status:VALID, product: OE - Order Entry , description: Shipping deliveries , implementation_dba_data: OE.WSH_DELIVERIES ,
-
Table: SO_HOLD_RELEASES
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_HOLD_RELEASES, object_name:SO_HOLD_RELEASES, status:VALID, product: OE - Order Entry , description: Hold release reasons , implementation_dba_data: OE.SO_HOLD_RELEASES ,
-
View: SO_CUSTOMERS_ACTIVE_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
Table: SO_HOLD_SOURCES_ALL
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_HOLD_SOURCES_ALL, object_name:SO_HOLD_SOURCES_ALL, status:VALID, product: OE - Order Entry , description: Applied holds , implementation_dba_data: OE.SO_HOLD_SOURCES_ALL ,
-
Table: SO_PICKING_RULES
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_PICKING_RULES, object_name:SO_PICKING_RULES, status:VALID, product: OE - Order Entry , description: Frequently used picking parameters (pick release rules) , implementation_dba_data: OE.SO_PICKING_RULES ,
-
View: SO_CUSTOMERS_CR_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: WSH_ORDER_VALUESET_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
Table: SO_ORDER_APPROVALS
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_ORDER_APPROVALS, object_name:SO_ORDER_APPROVALS, status:VALID, product: OE - Order Entry , description: Order-level approvals , implementation_dba_data: OE.SO_ORDER_APPROVALS ,
-
View: SO_CUSTOMERS_CR_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
Table: SO_ORDER_APPROVALS
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_ORDER_APPROVALS, object_name:SO_ORDER_APPROVALS, status:VALID, product: OE - Order Entry , description: Order-level approvals , implementation_dba_data: OE.SO_ORDER_APPROVALS ,
-
Table: SO_PICKING_RULES
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_PICKING_RULES, object_name:SO_PICKING_RULES, status:VALID, product: OE - Order Entry , description: Frequently used picking parameters (pick release rules) , implementation_dba_data: OE.SO_PICKING_RULES ,
-
View: SO_AGREEMENTS_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
Table: SO_ORDER_TYPES_115_ALL
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_ORDER_TYPES_115_ALL, object_name:SO_ORDER_TYPES_115_ALL, status:VALID, product: OE - Order Entry , description: Order types , implementation_dba_data: OE.SO_ORDER_TYPES_115_ALL ,
-
View: SO_AGREEMENTS_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
Table: SO_AGREEMENTS_B
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_AGREEMENTS_B, object_name:SO_AGREEMENTS_B, status:VALID, product: OE - Order Entry , description: Customer agreements , implementation_dba_data: OE.SO_AGREEMENTS_B ,
-
Table: SO_AGREEMENTS_B
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_AGREEMENTS_B, object_name:SO_AGREEMENTS_B, status:VALID, product: OE - Order Entry , description: Customer agreements , implementation_dba_data: OE.SO_AGREEMENTS_B ,
-
Table: WSH_DELIVERIES
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.WSH_DELIVERIES, object_name:WSH_DELIVERIES, status:VALID, product: OE - Order Entry , description: Shipping deliveries , implementation_dba_data: OE.WSH_DELIVERIES ,
-
Table: SO_PICKING_BATCHES_ALL
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_PICKING_BATCHES_ALL, object_name:SO_PICKING_BATCHES_ALL, status:VALID, product: OE - Order Entry , description: Released order batches , implementation_dba_data: OE.SO_PICKING_BATCHES_ALL ,
-
View: SO_BILL_TO_LOCATIONS_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_SHIP_TO_LOCATIONS_ACT_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_AGREEMENTS_ACTIVE_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_AGREEMENTS_ACTIVE_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_ORDER_NUMBERS_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
Table: SO_PRICE_LISTS_B
12.1.1
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_PRICE_LISTS_B, object_name:SO_PRICE_LISTS_B, status:VALID, product: OE - Order Entry , description: Price lists , implementation_dba_data: OE.SO_PRICE_LISTS_B ,
-
Table: SO_PRICE_LISTS_B
12.2.2
owner:OE, object_type:TABLE, fnd_design_data:OE.SO_PRICE_LISTS_B, object_name:SO_PRICE_LISTS_B, status:VALID, product: OE - Order Entry , description: Price lists , implementation_dba_data: OE.SO_PRICE_LISTS_B ,
-
View: SO_SHIP_TO_LOCATIONS_ALL_ACT_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_ORDER_NUMBERS_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_BILL_TO_LOCATIONS_ACTIVE_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_SHIP_TO_LOCATIONS_ACTIVE_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_SHIP_TO_LOCATIONS_ACT_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_SHIP_TO_LOCATIONS_ALL_ACT_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_BILL_TO_LOCATIONS_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_SHIP_TO_LOCATIONS_ACTIVE_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_HEADERS_APPLY_HOLDS_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_HEADERS_APPLY_HOLDS_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_BILL_TO_LOCATIONS_ACTIVE_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,