Oracle Fusion Fixed Assets (FA) is a comprehensive module used for managing an organization's fixed assets lifecycle—from acquisition to retirement.
For technical developers and report builders, understanding the underlying Fusion FA tables is crucial to extract and analyze data accurately.
In this blog, we will dive into:
-
Key Oracle Fusion Fixed Assets Tables
-
Table Relationships
-
Sample SQL Queries
-
Real-world Use Cases
Key Oracle Fusion Fixed Assets Tables
Table Name | Description |
---|---|
FA_ASSET_HISTORY | Stores asset-level information like asset number, description, and tag. |
FA_BOOKS | Maintains asset financial details per asset book (e.g., depreciation method, cost, YTD depreciation). |
FA_CATEGORIES_B | Contains asset category definitions. |
FA_ADDITIONS_B | Used during the asset addition process. |
FA_DISTRIBUTION_HISTORY | Tracks accounting and distribution information by cost center/project. |
FA_RETIREMENTS | Records asset retirement data. |
FA_DEPRN_SUMMARY | Stores summarized depreciation data for each asset per period. |
FA_LOCATIONS | Holds the location details where assets are deployed. |
Table Relationships with Other tables
-
FA_ASSET_HISTORY
➝ Asset core info
joins toFA_BOOKS
onASSET_ID
joins toFA_CATEGORIES_B
onCATEGORY_ID
joins toFA_LOCATIONS
onLOCATION_ID
joins toFA_DISTRIBUTION_HISTORY
for cost center info
joins toFA_DEPRN_SUMMARY
for depreciation data
Sample SQL Queries
Below are some of the Sample Queries.
1. Basic Asset Details
2. Asset Retirement Report
3. Depreciation Summary for a Period
4. Assets by Cost Center or Project
Use Cases for These Queries
-
Internal Audits: Asset existence, placement, depreciation status
-
Finance Reporting: Capital expenditure, asset additions/retirements
-
Cost Allocation: Cost center or project-based distribution
-
Fixed Asset Reconciliation: Verify system balances with physical checks
Notes :
-
Always validate the Book Type Code (
CORPORATE
,TAX
, etc.). -
Use Asset Status to filter retired, transferred, or fully depreciated assets.