Search Results ece_advo_headers_interface_u1
Overview
The EC.ECE_ADVO_HEADERS_INTERFACE table is an Oracle E-Business Suite interface staging table that holds outbound Application Advice (EDI transaction set 824 / APERAK) data prior to it being written to the outbound data file. It resides in the EC schema (the E-Commerce Gateway / EDI schema) and is governed by FND Design Data EC.ECE_ADVO_HEADERS_INTERFACE. Its structure is modeled on the permanent ECE_ADVO_HEADERS table, from which it is populated when an Application Advice outbound transaction is generated.
Because the table is an interface (staging) object, each row is transient: a row is purged after its data has been written to the outbound data file. The physical storage is the APPS_TS_INTERFACE tablespace, with PCT Free of 10 percent — a configuration typical of high-turnaround interface tables rather than long-term data stores.
Under a heuristic Data Vault classification, this table is a standalone object — it is not modeled as a hub, link, or satellite. In Data Vault terms it most closely resembles a transient staging structure that captures a business event (the generation of an Application Advice transaction) along with descriptive context. It is best treated as a link-like bridge between the source document and its external trading-partner representation, but the mined metadata does not identify a formal dependent-child or hub relationship.
Key Information Stored
The most operationally important columns fall into several groups:
- Surrogate/key columns:
ADVICE_HEADER_IDis the system-generated primary key, invisible to the user.RUN_IDis the run batch identifier. The unique indexECE_ADVO_HEADERS_INTERFACE_U1is defined on (ADVICE_HEADER_ID,RUN_ID), making this pair the business-key candidate.TRANSACTION_RECORD_IDis the unique key linking this table to its extension tableECE_ADVO_HEADERS_INTERFACE_X. - Trading partner attributes:
TP_DOCUMENT_ID,TP_ENTITY_TYPE,TP_TRANSLATOR_CODE,TP_LOCATION_CODE_EXT,TP_DESCRIPTION,TP_REFERENCE_EXT1andTP_REFERENCE_EXT2. These identify the recipient and the partner-specific references carried on the outbound transaction. - Document classification:
DOCUMENT_TYPE,DOCUMENT_CODE,DOCUMENT_PURPOSE_CODE, andDOCUMENT_STANDARD. - Cross-reference keys:
EXTERNAL_REFERENCE1–EXTERNAL_REFERENCE6andINTERNAL_REFERENCE1–INTERNAL_REFERENCE6, each holding up to six key values that uniquely identify the EDI document. Columns suffixed_INT/_INTERNALhold Oracle internal values;_EXT/_EXTERNALhold equivalent external values sourced fromECE_XREF_DATAwhen code conversion is enabled. - Other context:
COMMUNICATION_METHOD,TP_TEST_FLAG,TRANSACTION_DATE, and the standard WHO/audit columns (CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE,LAST_UPDATED_BY,SECURITY_GROUP_ID).
Common Use Cases and Queries
Typical uses include diagnosing why an outbound 824/APERAK was not produced, confirming trading-partner routing details, and reconstructing the content of an advice run for audit purposes. Because rows are transient, queries are usually executed within the outbound run window or against archive copies.
Representative queries include joining interface rows to the extension table on TRANSACTION_RECORD_ID:
SELECT h.ADVICE_HEADER_ID, h.RUN_ID, h.TP_DOCUMENT_ID, h.DOCUMENT_TYPE, h.TP_TRANSLATOR_CODE, x.* FROM EC.ECE_ADVO_HEADERS_INTERFACE h, EC.ECE_ADVO_HEADERS_INTERFACE_X x WHERE h.TRANSACTION_RECORD_ID = x.TRANSACTION_RECORD_ID;- Filtering by run:
WHERE RUN_ID = :run_idto inspect all advice headers produced in a single batch. - Reconciling partner references:
SELECT TP_DOCUMENT_ID, INTERNAL_REFERENCE1, EXTERNAL_REFERENCE1, DOCUMENT_STANDARD FROM EC.ECE_ADVO_HEADERS_INTERFACE WHERE ADVICE_HEADER_ID = :id;
Reporting scenarios commonly cross-check TP_DOCUMENT_ID against ECE_AR_TRX_HEADERS to confirm the source receivables transaction, and validate that DOCUMENT_TYPE/DOCUMENT_PURPOSE_CODE match the expected 824 content.
Related Objects
The most significant related objects are:
- EC.ECE_ADVO_HEADERS_INTERFACE_X — the extension table keyed by
TRANSACTION_RECORD_ID, storing additional descriptive flexfield/extensible attributes. - EC.ECE_ADVO_HEADERS — the permanent base table whose data source populates this interface table.
- EC.ECE_AR_TRX_HEADERS — referenced by
TP_DOCUMENT_ID, providing the source receivables transaction context. - FND_SECURITY_GROUPS — referenced by
SECURITY_GROUP_ID, enforcing operating-unit/security context. - EC.ECE_XREF_DATA — the code-conversion source for the external values (
_EXTcolumns).
-
INDEX: EC.ECE_ADVO_HEADERS_INTERFACE_U1
12.2.2
owner:EC, object_type:INDEX, object_name:ECE_ADVO_HEADERS_INTERFACE_U1, status:VALID,
-
INDEX: EC.ECE_ADVO_HEADERS_INTERFACE_U1
12.1.1
owner:EC, object_type:INDEX, object_name:ECE_ADVO_HEADERS_INTERFACE_U1, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
TABLE: EC.ECE_ADVO_HEADERS_INTERFACE
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_ADVO_HEADERS_INTERFACE, object_name:ECE_ADVO_HEADERS_INTERFACE, status:VALID,
-
TABLE: EC.ECE_ADVO_HEADERS_INTERFACE
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_ADVO_HEADERS_INTERFACE, object_name:ECE_ADVO_HEADERS_INTERFACE, status:VALID,
-
eTRM - EC Tables and Views
12.2.2
description: Contains the information for code conversions which identify external values for a given Oracle internal value and vice versa. ,
-
eTRM - EC Tables and Views
12.1.1
description: Contains the information for code conversions which identify external values for a given Oracle internal value and vice versa. ,