Search Results oe_order_sources_uk1
Overview
The OE_ORDER_SOURCES table is a core reference table within the Oracle E-Business Suite (EBS) Order Management (ONT) module, specifically in versions 12.1.1 and 12.2.2. It functions as the master repository for defining and identifying all external and internal feeder systems that can create sales orders within the application. Its primary role is to provide a controlled list of valid sources, enabling the system to distinguish between orders originating from different channels, such as Oracle iStore, Oracle TeleSales, EDI, or custom import interfaces. This distinction is critical for data integrity, process orchestration, and reporting, as business rules and validations can be source-dependent.
Key Information Stored
The table's structure is designed to uniquely identify each order source. The primary key is the ORDER_SOURCE_ID, a system-generated unique numeric identifier used for all internal foreign key relationships. The NAME column holds the unique, user-facing name of the source system (e.g., 'Internal', 'iStore', 'EDI') and is protected by a unique key constraint (OE_ORDER_SOURCES_UK1). While the provided metadata focuses on these core identifiers, the table typically includes additional descriptive columns such as DESCRIPTION, ENABLED_FLAG, and CREATION_DATE in a full implementation, which are used for setup and maintenance via the Order Management superuser forms.
Common Use Cases and Queries
This table is central to integration, reporting, and data validation scenarios. A common use case is identifying the origin of orders for channel-specific performance analysis. For instance, a report to summarize order volumes by source would join OE_ORDER_SOURCES to OE_ORDER_HEADERS_ALL. Another critical use is during the Order Import process (OE_HEADERS_IFACE_ALL), where the ORDER_SOURCE_ID in the interface tables must reference a valid, enabled record in OE_ORDER_SOURCES for successful transaction processing. Sample queries include validating interface data or generating a simple lookup list:
- SELECT ORDER_SOURCE_ID, NAME FROM OE_ORDER_SOURCES WHERE ENABLED_FLAG = 'Y' ORDER BY NAME;
- SELECT S.NAME, COUNT(H.HEADER_ID) FROM OE_ORDER_HEADERS_ALL H, OE_ORDER_SOURCES S WHERE H.ORDER_SOURCE_ID = S.ORDER_SOURCE_ID GROUP BY S.NAME;
Related Objects
OE_ORDER_SOURCES has extensive foreign key relationships, underscoring its foundational role. It is referenced by the primary transaction tables and nearly all Order Management Open Interface tables. Key relationships include:
- OE_ORDER_HEADERS_ALL: Linked via ORDER_SOURCE_ID and SOURCE_DOCUMENT_TYPE_ID, tying every sales order to its origin.
- OE_ORDER_LINES_ALL: Linked via SOURCE_DOCUMENT_TYPE_ID for line-level source tracking.
- Open Interface Tables: The ORDER_SOURCE_ID column in OE_HEADERS_IFACE_ALL, OE_LINES_IFACE_ALL, OE_ACTIONS_IFACE_ALL, OE_CREDITS_IFACE_ALL, OE_PRICE_ADJS_IFACE_ALL, OE_PRICE_ATTS_IFACE_ALL, and OE_RESERVTNS_IFACE_ALL all reference this table to validate incoming data.
- Interface Acknowledgment Tables: OE_HEADER_ACKS, OE_LINE_ACKS, and OE_LOTSERIAL_ACKS also reference the table to track the source of processed interface records.
-
Table: OE_ORDER_SOURCES
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_ORDER_SOURCES, object_name:OE_ORDER_SOURCES, status:VALID, product: ONT - Order Management , description: Feeder System Names that create orders in Order Management tables. , implementation_dba_data: ONT.OE_ORDER_SOURCES ,
-
Table: OE_ORDER_SOURCES
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_ORDER_SOURCES, object_name:OE_ORDER_SOURCES, status:VALID, product: ONT - Order Management , description: Feeder System Names that create orders in Order Management tables. , implementation_dba_data: ONT.OE_ORDER_SOURCES ,
-
eTRM - ONT Tables and Views
12.2.2
description: OM WorkFlow Activity Skip Log. ,
-
eTRM - ONT Tables and Views
12.1.1
description: OM WorkFlow Activity Skip Log. ,
-
eTRM - ONT Tables and Views
12.1.1
description: OM WorkFlow Activity Skip Log. ,
-
eTRM - ONT Tables and Views
12.2.2
description: OM WorkFlow Activity Skip Log. ,