Search Results ax_events
Overview
AX_EVENTS is a core table in the AX (Global Accounting Engine) product module of Oracle E-Business Suite, documented as valid in both release 12.1.1 and 12.2.2. It stores accounting events information — the discrete, registerable business transactions that the Global Accounting Engine recognizes and processes before they are transformed into subledger accounting entries. In the AX architecture, an event is the semantic anchor that carries the originating transaction's context (source application, event classification, set of books, and a set of descriptive flexfield-style payload fields) so that downstream accounting programs can generate and post the corresponding accounting lines.
The table is physically owned by the AX schema and exposes 48 documented columns in the 12.2.2 physical schema. From a modeling perspective, the FK structure suggests a hub-leaning Data Vault classification: the table is identified by a single surrogate key and is referenced by dependent tables, but it also carries a foreign key to a document sequence reference table, which is characteristic of a hub with a small outbound link. This classification is a heuristic suggestion mined from the foreign key topology rather than an Oracle-prescribed design.
Key Information Stored
- EVENT_ID — the surrogate primary key, enforced by AX_EVENTS_PK and also by the unique index AX_EVENTS_U1, making it both the technical identifier and the documented business-key candidate.
- EVENT_TYPE — classifies the accounting event, driving which accounting derivation logic applies.
- APPLICATION_ID — identifies the source application that raised the event, distinguishing, for example, Payables, Receivables, or Assets origin.
- SET_OF_BOOKS_ID — the ledger context in which the event is accounted.
- EVENT_DATE — the accounting date associated with the event.
- ORG_ID — the operating unit, supporting multi-org security and reporting.
- TRANSLATION_STATUS and TRANSLATED_DATE — track whether the event has been converted into subledger accounting entries and when.
- DOC_SEQUENCE_ID and DOC_SEQUENCE_VALUE — link the event to a document sequence and record the assigned sequence number; DOC_SEQUENCE_ID is a foreign key to FND_DOCUMENT_SEQUENCES.
- EVENT_FIELD1 through EVENT_FIELD25 — a broad set of generic attribute columns used to carry transaction-specific payload from the source application.
- ADDITIONAL_DATE, ADDITIONAL_NUMBER, ADDITIONAL_VARCHAR2 — supplementary descriptive attributes for event context.
- MESSAGE_TEXT — stores diagnostic or processing messages related to the event.
- Standard WHO and concurrent request columns (LAST_UPDATE_DATE, CREATED_BY, REQUEST_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE) provide audit and process traceability.
Common Use Cases and Queries
The principal use case is event tracing: identifying which business events have been captured by the Global Accounting Engine and whether they have been successfully translated into accounting entries. A typical query joins AX_EVENTS to AX_SLE_HEADERS on EVENT_ID to return the subledger accounting header generated for each event:
- SELECT e.EVENT_ID, e.EVENT_TYPE, e.EVENT_DATE, e.TRANSLATION_STATUS, h.SLE_HEADER_ID FROM AX_EVENTS e, AX_SLE_HEADERS h WHERE e.EVENT_ID = h.EVENT_ID.
- Filtering by SET_OF_BOOKS_ID, ORG_ID, and EVENT_DATE range supports period-close reconciliation reporting.
- Querying rows with TRANSLATION_STATUS not yet complete identifies events pending accounting generation, a common subledger reconciliation and troubleshooting pattern.
- Joining DOC_SEQUENCE_ID to FND_DOCUMENT_SEQUENCES resolves the assigned document sequence name for audit reporting.
- Joining APPLICATION_ID to FND_APPLICATION identifies the originating product for cross-application event volume analysis.
Related Objects
- AX_SLE_HEADERS — references AX_EVENTS via EVENT_ID; holds the subledger accounting header produced from the event.
- AX_SLE_HEADERS_ARCH — the archived counterpart, also referencing AX_EVENTS.EVENT_ID for historical event accounting.
- FND_DOCUMENT_SEQUENCES — referenced by AX_EVENTS.DOC_SEQUENCE_ID, supplying the document sequence definition for the event.
- AX_EVENTS_PK / AX_EVENTS_U1 — the primary key constraint and unique index over EVENT_ID, essential for join performance.
- FND_APPLICATION — resolves APPLICATION_ID to the source application name.
- GL_SETS_OF_BOOKS / GL_LEDGERS — resolves SET_OF_BOOKS_ID to the accounting ledger.
-
Table: AX_EVENTS
12.1.1
owner:AX, object_type:TABLE, fnd_design_data:AX.AX_EVENTS, object_name:AX_EVENTS, status:VALID, product: AX - Global Accounting Engine , description: Accounting events information , implementation_dba_data: AX.AX_EVENTS ,
-
Table: AX_EVENTS
12.2.2
owner:AX, object_type:TABLE, fnd_design_data:AX.AX_EVENTS, object_name:AX_EVENTS, status:VALID, product: AX - Global Accounting Engine , description: Accounting events information , implementation_dba_data: AX.AX_EVENTS ,
-
SYNONYM: APPS.AX_EVENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AX_EVENTS, status:VALID,
-
SYNONYM: APPS.AX_EVENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AX_EVENTS, status:VALID,
-
View: AX_CONTEXT_TABLES_V
12.1.1
product: AX - Global Accounting Engine , description: Use by the Setup Query Chains form , implementation_dba_data: Not implemented in this database ,
-
View: AX_WIP_TRANSACTION_ACCOUNTS_V1
12.1.1
product: AX - Global Accounting Engine , description: Account code combinations of each WIP transaction source , implementation_dba_data: Not implemented in this database ,
-
VIEW: AX.AX_EVENTS#
12.2.2
owner:AX, object_type:VIEW, object_name:AX_EVENTS#, status:VALID,
-
View: AX_WIP_TRANSACTION_ACCOUNTS_V1
12.2.2
product: AX - Global Accounting Engine , description: Account code combinations of each WIP transaction source , implementation_dba_data: Not implemented in this database ,
-
View: AX_CONTEXT_TABLES_V
12.2.2
product: AX - Global Accounting Engine , description: Use by the Setup Query Chains form , implementation_dba_data: Not implemented in this database ,
-
VIEW: AX.AX_EVENTS#
12.2.2
-
TABLE: AX.AX_EVENTS
12.1.1
owner:AX, object_type:TABLE, fnd_design_data:AX.AX_EVENTS, object_name:AX_EVENTS, status:VALID,
-
Table: AX_SLE_HEADERS_ARCH
12.1.1
owner:AX, object_type:TABLE, fnd_design_data:AX.AX_SLE_HEADERS_ARCH, object_name:AX_SLE_HEADERS_ARCH, status:VALID, product: AX - Global Accounting Engine , description: Accounting rows purged from the AX_SLE_HEADERS table , implementation_dba_data: AX.AX_SLE_HEADERS_ARCH ,
-
TABLE: AX.AX_EVENTS
12.2.2
owner:AX, object_type:TABLE, fnd_design_data:AX.AX_EVENTS, object_name:AX_EVENTS, status:VALID,
-
Table: AX_SLE_HEADERS
12.1.1
owner:AX, object_type:TABLE, fnd_design_data:AX.AX_SLE_HEADERS, object_name:AX_SLE_HEADERS, status:VALID, product: AX - Global Accounting Engine , description: Journal entry headers information , implementation_dba_data: AX.AX_SLE_HEADERS ,
-
Table: AX_SLE_HEADERS
12.2.2
owner:AX, object_type:TABLE, fnd_design_data:AX.AX_SLE_HEADERS, object_name:AX_SLE_HEADERS, status:VALID, product: AX - Global Accounting Engine , description: Journal entry headers information , implementation_dba_data: AX.AX_SLE_HEADERS ,
-
View: AXBV_DOCUMENT_HISTORIES
12.1.1
product: AX - Global Accounting Engine , implementation_dba_data: Not implemented in this database ,
-
View: AXBV_DOCUMENT_HISTORIES
12.2.2
product: AX - Global Accounting Engine , implementation_dba_data: Not implemented in this database ,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
Table: AX_SLE_HEADERS_ARCH
12.2.2
owner:AX, object_type:TABLE, fnd_design_data:AX.AX_SLE_HEADERS_ARCH, object_name:AX_SLE_HEADERS_ARCH, status:VALID, product: AX - Global Accounting Engine , description: Accounting rows purged from the AX_SLE_HEADERS table , implementation_dba_data: AX.AX_SLE_HEADERS_ARCH ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
TABLE: AX.AX_EVENT_MAPPINGS
12.1.1
owner:AX, object_type:TABLE, fnd_design_data:AX.AX_EVENT_MAPPINGS, object_name:AX_EVENT_MAPPINGS, status:VALID,
-
TABLE: AX.AX_EVENT_MAPPINGS
12.2.2
owner:AX, object_type:TABLE, fnd_design_data:AX.AX_EVENT_MAPPINGS, object_name:AX_EVENT_MAPPINGS, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
View: AXFV_DOCUMENT_HISTORIES
12.1.1
product: AX - Global Accounting Engine , implementation_dba_data: Not implemented in this database ,
-
View: AXFV_DOCUMENT_HISTORIES
12.2.2
product: AX - Global Accounting Engine , implementation_dba_data: Not implemented in this database ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
View: AX_EVENTS_V1
12.1.1
product: AX - Global Accounting Engine , implementation_dba_data: Not implemented in this database ,
-
View: AX_AP_ACCOUNTING_EVENTS_ALL_V
12.2.2
product: AX - Global Accounting Engine , description: Replacement for the AP table, AP_ACCOUNTING_EVENTS_ALL, when the AX accounting engine is used. , implementation_dba_data: Not implemented in this database ,
-
View: AX_AP_AE_HEADERS_ALL_V
12.1.1
product: AX - Global Accounting Engine , description: Replacement for the AP table, AP_AE_HEADERS_ALL, when the AX accounting engine is used. , implementation_dba_data: Not implemented in this database ,
-
Lookup Type: AX_REPORT_PROMPTS
12.1.1
product: AX - Global Accounting Engine , meaning: AX_REPORT_PROMPTS , description: Prompts for Report ,
-
Lookup Type: AX_REPORT_PROMPTS
12.2.2
product: AX - Global Accounting Engine , meaning: AX_REPORT_PROMPTS , description: Prompts for Report ,
-
PACKAGE BODY: APPS.CST_SLA_UPDATE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CST_SLA_UPDATE_PKG, status:VALID,
-
View: AX_EVENTS_V1
12.2.2
product: AX - Global Accounting Engine , implementation_dba_data: Not implemented in this database ,
-
View: AX_AP_AE_HEADERS_ALL_V
12.2.2
product: AX - Global Accounting Engine , description: Replacement for the AP table, AP_AE_HEADERS_ALL, when the AX accounting engine is used. , implementation_dba_data: Not implemented in this database ,
-
View: AX_AP_ACCOUNTING_EVENTS_ALL_V
12.1.1
product: AX - Global Accounting Engine , description: Replacement for the AP table, AP_ACCOUNTING_EVENTS_ALL, when the AX accounting engine is used. , implementation_dba_data: Not implemented in this database ,
-
eTRM - AX Tables and Views
12.1.1
description: Absorption information ,
-
eTRM - AX Tables and Views
12.2.2
description: Absorption information ,
-
View: AX_AP_AE_LINES_ALL_V
12.2.2
product: AX - Global Accounting Engine , description: Replacement for the AP table, AP_AE_LINES_ALL, when the AX accounting engine is used. , implementation_dba_data: Not implemented in this database ,
-
View: AX_AP_AE_LINES_ALL_V
12.1.1
product: AX - Global Accounting Engine , description: Replacement for the AP table, AP_AE_LINES_ALL, when the AX accounting engine is used. , implementation_dba_data: Not implemented in this database ,
-
TABLE: AX.AX_SLE_HEADERS_ARCH
12.2.2
owner:AX, object_type:TABLE, fnd_design_data:AX.AX_SLE_HEADERS_ARCH, object_name:AX_SLE_HEADERS_ARCH, status:VALID,
-
TABLE: AX.AX_SLE_HEADERS_ARCH
12.1.1
owner:AX, object_type:TABLE, fnd_design_data:AX.AX_SLE_HEADERS_ARCH, object_name:AX_SLE_HEADERS_ARCH, status:VALID,
-
TABLE: AX.AX_SLE_HEADERS
12.1.1
owner:AX, object_type:TABLE, fnd_design_data:AX.AX_SLE_HEADERS, object_name:AX_SLE_HEADERS, status:VALID,
-
TABLE: AX.AX_SLE_HEADERS
12.2.2
owner:AX, object_type:TABLE, fnd_design_data:AX.AX_SLE_HEADERS, object_name:AX_SLE_HEADERS, status:VALID,
-
APPS.CST_SLA_UPDATE_PKG dependencies on AX_EVENTS
12.2.2