Search Results okl_ae_headers_all
Overview
The OKL_AE_HEADERS_ALL table is a core data object within the Oracle E-Business Suite (EBS) Leasing and Finance Management (OKL) module. It functions as the header record for accounting entries generated by the application. Its primary role is to serve as the parent entity for detailed accounting line items, grouping them under a single, unique accounting event. This structure is fundamental to the integrity of the financial accounting process in OKL, ensuring that all related debits and credits are logically associated and can be traced back to their originating business transaction. The table is designed to support the multi-organization architecture of Oracle EBS, as indicated by the "_ALL" suffix.
Key Information Stored
While the provided metadata does not list specific columns beyond the primary and foreign keys, the table's purpose dictates the nature of its critical attributes. The primary key, AE_HEADER_ID, uniquely identifies each accounting entry header. The foreign key column, ACCOUNTING_EVENT_ID, links the header to its source transaction in the OKL_ACC_EVENTS_ALL table. Other essential columns typically found in such a structure would include status flags (e.g., POSTED_STATUS), accounting date, ledger ID, a unique journal entry name or batch identifier, and creation information (CREATED_BY, CREATION_DATE). These fields collectively define the context, period, and state of the summarized accounting entry.
Common Use Cases and Queries
This table is central to financial reporting and reconciliation within OKL. A primary use case is tracing the complete accounting impact of a lease or financial transaction from the event through to the detailed journal lines. Technical consultants and business analysts frequently query this table to investigate posting errors, validate batch totals, or extract data for custom financial reports. A common SQL pattern involves joining the header to its related lines and the source accounting event.
- Sample Query for Event Details:
SELECT aeh.ae_header_id, aeh.accounting_event_id, ael.* FROM okl_ae_headers_all aeh JOIN okl_ae_lines_all ael ON aeh.ae_header_id = ael.ae_header_id WHERE aeh.accounting_event_id = :p_event_id; - Reporting Use Case: Generating a summary of unposted accounting entries by ledger and date for period-end close monitoring.
Related Objects
The OKL_AE_HEADERS_ALL table sits at the center of a key relationship chain for accounting data. As documented in the provided metadata, it has defined foreign key relationships with the following objects:
- References (Parent):
OKL_ACC_EVENTS_ALLvia the columnOKL_AE_HEADERS_ALL.ACCOUNTING_EVENT_ID. This links the accounting entry to the original business event that triggered it. - Referenced By (Child):
OKL_AE_LINES_ALLvia the columnOKL_AE_LINES_ALL.AE_HEADER_ID. This is a critical one-to-many relationship where each header record possesses one or more associated line records containing the detailed account, amount, and type (debit/credit).
This relationship structure is essential for navigating from a high-level transaction to its detailed general ledger impact.
-
Table: OKL_AE_HEADERS_ALL
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_AE_HEADERS_ALL, object_name:OKL_AE_HEADERS_ALL, status:VALID, product: OKL - Leasing and Finance Management , description: Accounting entry headers , implementation_dba_data: OKL.OKL_AE_HEADERS_ALL ,
-
Table: OKL_ACC_EVENTS_ALL
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_ACC_EVENTS_ALL, object_name:OKL_ACC_EVENTS_ALL, status:VALID, product: OKL - Leasing and Finance Management , description: Accounting Events , implementation_dba_data: OKL.OKL_ACC_EVENTS_ALL ,
-
Table: OKL_AE_LINES_ALL
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_AE_LINES_ALL, object_name:OKL_AE_LINES_ALL, status:VALID, product: OKL - Leasing and Finance Management , description: Accounting Entry lines , implementation_dba_data: OKL.OKL_AE_LINES_ALL ,
-
View: OKL_AEL_GL_QTE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AEL_GL_QTE_V, object_name:OKL_AEL_GL_QTE_V, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AEL_GL_QTE_V ,
-
View: OKL_AEL_GL_AST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AEL_GL_AST_V, object_name:OKL_AEL_GL_AST_V, status:VALID, product: OKL - Leasing and Finance Management , description: This view contains all the asset related transactions which have been transferred to GL. This view is used to enable OKL GL Drilldown functionality. This view displays the Lease transactions which fall under 'Asset Disposition' journal cate , implementation_dba_data: APPS.OKL_AEL_GL_AST_V ,
-
View: OKL_AEL_GL_TRX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AEL_GL_TRX_V, object_name:OKL_AEL_GL_TRX_V, status:VALID, product: OKL - Leasing and Finance Management , description: This view contains the transactions which have been transferred to GL. This view is used to enable OKL GL Drilldown functionality. This view displays the Lease transactions which fall under Loss Provision, Accrual, Miscellaneous and Adjust , implementation_dba_data: APPS.OKL_AEL_GL_TRX_V ,
-
View: OKL_AEL_GL_CTR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AEL_GL_CTR_V, object_name:OKL_AEL_GL_CTR_V, status:VALID, product: OKL - Leasing and Finance Management , description: This view contains all the contract related transactions which have been transferred to GL. This view is used to enable OKL GL Drilldown functionality. This view displays the Lease transactions which fall under Booking, Rebook, Renewal, Rel , implementation_dba_data: APPS.OKL_AEL_GL_CTR_V ,