Search Results fa_transaction_headers
Overview
The FA_TRANSACTION_HEADERS table is the central transactional ledger within the Oracle Assets (OFA) module of Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2. It serves as the master repository for recording all asset-related financial activities, providing a complete audit trail for every transaction processed by the system. Each row represents a distinct transaction header that groups one or more detailed transaction lines, which are stored in related child tables. Its primary role is to maintain the integrity and sequence of asset transactions, linking them to the specific asset, book, and source document. The table's extensive foreign key relationships underscore its critical position as the nexus for asset accounting, depreciation, and historical tracking.
Key Information Stored
The table's structure is designed to capture the essential metadata of a transaction. The primary key, TRANSACTION_HEADER_ID, uniquely identifies each transaction record. Other critical columns establish the transaction's context and relationships. The BOOK_TYPE_CODE and ASSET_ID columns link the transaction to a specific depreciation book and asset master record, respectively. The TRANSACTION_TYPE_CODE defines the nature of the action, such as addition, transfer, adjustment, retirement, or reclassification. The table also maintains referential integrity through columns like SOURCE_TRANSACTION_HEADER_ID and MEMBER_TRANSACTION_HEADER_ID, which track relationships between grouped or derived transactions (e.g., mass transactions or split/merge operations). Additional columns typically store the transaction date, period, and status, governing how the transaction flows through the asset lifecycle and posting to the general ledger.
Common Use Cases and Queries
This table is fundamental for troubleshooting, audit reporting, and data extraction. A common use case is tracing the complete history of an asset. Analysts frequently join FA_TRANSACTION_HEADERS with FA_ADDITIONS and FA_BOOKS to generate asset life cycle reports. Another critical scenario involves reconciling depreciation or net book value by verifying all transactions posted within a specific accounting period. Sample SQL patterns often include filtering by transaction type and date range to analyze capital activity or audit specific event sequences, such as transfers followed by adjustments.
- Asset Transaction History:
SELECT th.* FROM fa_transaction_headers th, fa_additions a WHERE th.asset_id = a.asset_id AND a.asset_number = '<ASSET_NUMBER>' ORDER BY th.transaction_date; - Transaction Audit for a Period:
SELECT transaction_type_code, COUNT(*), MIN(transaction_date), MAX(transaction_date) FROM fa_transaction_headers WHERE book_type_code = '<BOOK>' AND transaction_date BETWEEN :p_start_date AND :p_end_date GROUP BY transaction_type_code;
Related Objects
As indicated by the foreign key metadata, FA_TRANSACTION_HEADERS has a foundational relationship with numerous core Assets tables. It is a direct parent to tables storing transaction details: FA_ADJUSTMENTS (for depreciation and cost adjustments), FA_ASSET_HISTORY (for category and location changes), and FA_DISTRIBUTION_HISTORY (for assignment changes). Its relationship with FA_BOOKS is particularly crucial, as the TRANSACTION_HEADER_ID_IN and _OUT columns on FA_BOOKs link the transaction that opened and closed an asset's book record. The table also references control tables like FA_BOOK_CONTROLS and source documents via FA_INVOICE_TRANSACTIONS. The self-referencing foreign keys for SOURCE and MEMBER transaction headers manage complex transactional hierarchies within the system.
-
Table: FA_TRANSACTION_HEADERS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_TRANSACTION_HEADERS, object_name:FA_TRANSACTION_HEADERS, status:VALID, product: OFA - Assets , description: Information about all transactions performed within Oracle Assets , implementation_dba_data: FA.FA_TRANSACTION_HEADERS ,
-
Table: FA_TRANSACTION_HEADERS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_TRANSACTION_HEADERS, object_name:FA_TRANSACTION_HEADERS, status:VALID, product: OFA - Assets , description: Information about all transactions performed within Oracle Assets , implementation_dba_data: FA.FA_TRANSACTION_HEADERS ,
-
Table: FA_TRX_REFERENCES
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_TRX_REFERENCES, object_name:FA_TRX_REFERENCES, status:VALID, product: OFA - Assets , description: Information about inter-asset transactions performed within Oracle Assets , implementation_dba_data: FA.FA_TRX_REFERENCES ,
-
Table: FA_TRX_REFERENCES
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_TRX_REFERENCES, object_name:FA_TRX_REFERENCES, status:VALID, product: OFA - Assets , description: Information about inter-asset transactions performed within Oracle Assets , implementation_dba_data: FA.FA_TRX_REFERENCES ,
-
Table: FA_PARALLEL_WORKERS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_PARALLEL_WORKERS, object_name:FA_PARALLEL_WORKERS, status:VALID, product: OFA - Assets , description: Used to control concurrent execution of post mass additions program. , implementation_dba_data: FA.FA_PARALLEL_WORKERS ,
-
Table: FA_PARALLEL_WORKERS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_PARALLEL_WORKERS, object_name:FA_PARALLEL_WORKERS, status:VALID, product: OFA - Assets , description: Used to control concurrent execution of post mass additions program. , implementation_dba_data: FA.FA_PARALLEL_WORKERS ,
-
Table: FA_ASSET_HISTORY
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_ASSET_HISTORY, object_name:FA_ASSET_HISTORY, status:VALID, product: OFA - Assets , description: Historical information about asset reclassifications and unit adjustments , implementation_dba_data: FA.FA_ASSET_HISTORY ,
-
Table: FA_ASSET_HISTORY
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_ASSET_HISTORY, object_name:FA_ASSET_HISTORY, status:VALID, product: OFA - Assets , description: Historical information about asset reclassifications and unit adjustments , implementation_dba_data: FA.FA_ASSET_HISTORY ,
-
Table: FA_RETIREMENTS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_RETIREMENTS, object_name:FA_RETIREMENTS, status:VALID, product: OFA - Assets , description: Information about asset retirements and reinstatements , implementation_dba_data: FA.FA_RETIREMENTS ,
-
Table: FA_RETIREMENTS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_RETIREMENTS, object_name:FA_RETIREMENTS, status:VALID, product: OFA - Assets , description: Information about asset retirements and reinstatements , implementation_dba_data: FA.FA_RETIREMENTS ,
-
Table: FA_MC_RETIREMENTS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_RETIREMENTS, object_name:FA_MC_RETIREMENTS, status:VALID, product: OFA - Assets , description: Currency and financial information about retirements in each reporting book , implementation_dba_data: FA.FA_MC_RETIREMENTS ,
-
Table: FA_MC_RETIREMENTS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_RETIREMENTS, object_name:FA_MC_RETIREMENTS, status:VALID, product: OFA - Assets , description: Currency and financial information about retirements in each reporting book , implementation_dba_data: FA.FA_MC_RETIREMENTS ,
-
Table: FA_MC_BOOKS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_BOOKS, object_name:FA_MC_BOOKS, status:VALID, product: OFA - Assets , description: Financial information for each asset in the reporting currency , implementation_dba_data: FA.FA_MC_BOOKS ,
-
Table: FA_BOOKS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_BOOKS, object_name:FA_BOOKS, status:VALID, product: OFA - Assets , description: Financial information of each asset , implementation_dba_data: FA.FA_BOOKS ,
-
Table: FA_MC_BOOKS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_BOOKS, object_name:FA_MC_BOOKS, status:VALID, product: OFA - Assets , description: Financial information for each asset in the reporting currency , implementation_dba_data: FA.FA_MC_BOOKS ,
-
Table: FA_BOOKS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_BOOKS, object_name:FA_BOOKS, status:VALID, product: OFA - Assets , description: Financial information of each asset , implementation_dba_data: FA.FA_BOOKS ,
-
Table: FA_DISTRIBUTION_HISTORY
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_DISTRIBUTION_HISTORY, object_name:FA_DISTRIBUTION_HISTORY, status:VALID, product: OFA - Assets , description: Employee, location, and Accounting Flexfield values assigned to each asset , implementation_dba_data: FA.FA_DISTRIBUTION_HISTORY ,
-
Table: FA_DISTRIBUTION_HISTORY
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_DISTRIBUTION_HISTORY, object_name:FA_DISTRIBUTION_HISTORY, status:VALID, product: OFA - Assets , description: Employee, location, and Accounting Flexfield values assigned to each asset , implementation_dba_data: FA.FA_DISTRIBUTION_HISTORY ,
-
View: FA_ASSET_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ASSET_HISTORY_V, object_name:FA_ASSET_HISTORY_V, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FA_ASSET_HISTORY_V ,
-
View: FA_ASSET_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ASSET_HISTORY_V, object_name:FA_ASSET_HISTORY_V, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FA_ASSET_HISTORY_V ,
-
View: FA_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_TRANSACTIONS_V, object_name:FA_TRANSACTIONS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_TRANSACTIONS_V ,
-
View: FA_DISTRIBUTION_INQUIRY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DISTRIBUTION_INQUIRY_V, object_name:FA_DISTRIBUTION_INQUIRY_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_DISTRIBUTION_INQUIRY_V ,
-
View: FA_DISTRIBUTION_INQUIRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DISTRIBUTION_INQUIRY_V, object_name:FA_DISTRIBUTION_INQUIRY_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_DISTRIBUTION_INQUIRY_V ,
-
View: FA_ASSET_HIST_WEB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ASSET_HIST_WEB_V, object_name:FA_ASSET_HIST_WEB_V, status:VALID, product: OFA - Assets , description: Asset history information , implementation_dba_data: APPS.FA_ASSET_HIST_WEB_V ,
-
View: FA_ASSET_HIST_WEB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ASSET_HIST_WEB_V, object_name:FA_ASSET_HIST_WEB_V, status:VALID, product: OFA - Assets , description: Asset history information , implementation_dba_data: APPS.FA_ASSET_HIST_WEB_V ,
-
View: FA_FINANCIAL_INQUIRY_UPL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_FINANCIAL_INQUIRY_UPL_V, object_name:FA_FINANCIAL_INQUIRY_UPL_V, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FA_FINANCIAL_INQUIRY_UPL_V ,
-
View: FA_TRANSACTION_HISTORY_BOOKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_TRANSACTION_HISTORY_BOOKS_V, object_name:FA_TRANSACTION_HISTORY_BOOKS_V, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FA_TRANSACTION_HISTORY_BOOKS_V ,
-
View: FA_FINANCIAL_INQUIRY_COST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_FINANCIAL_INQUIRY_COST_V, object_name:FA_FINANCIAL_INQUIRY_COST_V, status:VALID, product: OFA - Assets , description: Financial Cost History , implementation_dba_data: APPS.FA_FINANCIAL_INQUIRY_COST_V ,
-
Table: FA_MC_BOOKS_RATES
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_BOOKS_RATES, object_name:FA_MC_BOOKS_RATES, status:VALID, product: OFA - Assets , description: Exchange rate information , implementation_dba_data: FA.FA_MC_BOOKS_RATES ,
-
Table: FA_TRANSFER_DETAILS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_TRANSFER_DETAILS, object_name:FA_TRANSFER_DETAILS, status:VALID, product: OFA - Assets , description: Information that defines the historic relationship between active FA_BOOKS and FA_DISTRIBUTION_HISTORY rows , implementation_dba_data: FA.FA_TRANSFER_DETAILS ,
-
Table: FA_TRANSFER_DETAILS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_TRANSFER_DETAILS, object_name:FA_TRANSFER_DETAILS, status:VALID, product: OFA - Assets , description: Information that defines the historic relationship between active FA_BOOKS and FA_DISTRIBUTION_HISTORY rows , implementation_dba_data: FA.FA_TRANSFER_DETAILS ,
-
Table: FA_CAPITAL_BUDGET
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_CAPITAL_BUDGET, object_name:FA_CAPITAL_BUDGET, status:VALID, product: OFA - Assets , description: Budget assets used to run depreciation projections and reports , implementation_dba_data: FA.FA_CAPITAL_BUDGET ,
-
View: FA_TRANS_HIST_BOOKS_WEB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_TRANS_HIST_BOOKS_WEB_V, object_name:FA_TRANS_HIST_BOOKS_WEB_V, status:VALID, product: OFA - Assets , description: Asset transaction history in a given book , implementation_dba_data: APPS.FA_TRANS_HIST_BOOKS_WEB_V ,
-
View: FA_TRANSACTION_HISTORY_BOOKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_TRANSACTION_HISTORY_BOOKS_V, object_name:FA_TRANSACTION_HISTORY_BOOKS_V, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FA_TRANSACTION_HISTORY_BOOKS_V ,
-
Table: FA_MC_BOOKS_RATES
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_BOOKS_RATES, object_name:FA_MC_BOOKS_RATES, status:VALID, product: OFA - Assets , description: Exchange rate information , implementation_dba_data: FA.FA_MC_BOOKS_RATES ,
-
View: FABV_TRANS_HDRS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FABV_TRANS_HDRS, object_name:FABV_TRANS_HDRS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FABV_TRANS_HDRS ,
-
View: FABV_TRANS_HDRS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FABV_TRANS_HDRS, object_name:FABV_TRANS_HDRS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FABV_TRANS_HDRS ,
-
Table: FA_CAPITAL_BUDGET
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_CAPITAL_BUDGET, object_name:FA_CAPITAL_BUDGET, status:VALID, product: OFA - Assets , description: Budget assets used to run depreciation projections and reports , implementation_dba_data: FA.FA_CAPITAL_BUDGET ,
-
Table: FA_INVOICE_TRANSACTIONS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_INVOICE_TRANSACTIONS, object_name:FA_INVOICE_TRANSACTIONS, status:VALID, product: OFA - Assets , description: Information about transactions made to invoice lines within Oracle Assets , implementation_dba_data: FA.FA_INVOICE_TRANSACTIONS ,
-
View: FA_RETIREMENT_ADJUSTMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_RETIREMENT_ADJUSTMENTS_V, object_name:FA_RETIREMENT_ADJUSTMENTS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_RETIREMENT_ADJUSTMENTS_V ,
-
Table: FA_MC_ADJUSTMENTS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_ADJUSTMENTS, object_name:FA_MC_ADJUSTMENTS, status:VALID, product: OFA - Assets , description: Stores information to create adjustment journal entries in the reporting currency , implementation_dba_data: FA.FA_MC_ADJUSTMENTS ,
-
View: FA_TRANS_HIST_BOOKS_WEB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_TRANS_HIST_BOOKS_WEB_V, object_name:FA_TRANS_HIST_BOOKS_WEB_V, status:VALID, product: OFA - Assets , description: Asset transaction history in a given book , implementation_dba_data: APPS.FA_TRANS_HIST_BOOKS_WEB_V ,
-
Table: FA_INVOICE_TRANSACTIONS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_INVOICE_TRANSACTIONS, object_name:FA_INVOICE_TRANSACTIONS, status:VALID, product: OFA - Assets , description: Information about transactions made to invoice lines within Oracle Assets , implementation_dba_data: FA.FA_INVOICE_TRANSACTIONS ,
-
View: FA_UNPLANNED_DEPR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_UNPLANNED_DEPR_V, object_name:FA_UNPLANNED_DEPR_V, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FA_UNPLANNED_DEPR_V ,
-
View: FA_UNPLANNED_DEPR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_UNPLANNED_DEPR_V, object_name:FA_UNPLANNED_DEPR_V, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FA_UNPLANNED_DEPR_V ,
-
View: FAFV_TRANS_HDRS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FAFV_TRANS_HDRS, object_name:FAFV_TRANS_HDRS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FAFV_TRANS_HDRS ,
-
Table: FA_ADJUSTMENTS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_ADJUSTMENTS, object_name:FA_ADJUSTMENTS, status:VALID, product: OFA - Assets , description: Information used by the posting program to generate journal entry lines in the general ledger , implementation_dba_data: FA.FA_ADJUSTMENTS ,
-
View: FAFV_TRANS_HDRS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FAFV_TRANS_HDRS, object_name:FAFV_TRANS_HDRS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FAFV_TRANS_HDRS ,
-
View: FA_GROUP_COST_INQUIRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_GROUP_COST_INQUIRY_V, object_name:FA_GROUP_COST_INQUIRY_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_GROUP_COST_INQUIRY_V ,
-
View: FA_RETIREMENT_ADJUSTMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_RETIREMENT_ADJUSTMENTS_V, object_name:FA_RETIREMENT_ADJUSTMENTS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_RETIREMENT_ADJUSTMENTS_V ,