Search Results fa_deprn_detail
The FA_DEPRN_DETAIL
table in Oracle E-Business Suite (EBS) 12.1.1 or 12.2.2 is a critical repository for tracking asset depreciation at a granular level. As part of the Fixed Assets module, this table stores detailed depreciation records for each asset, enabling financial reporting, tax compliance, and asset lifecycle management. Below is a detailed breakdown of its structure, purpose, and key attributes.
1. Purpose and Functional Role
TheFA_DEPRN_DETAIL
table captures depreciation calculations for individual assets across accounting periods. It supports:
- Depreciation Tracking: Stores periodic depreciation amounts, including adjustments, retirements, or transfers.
- Financial Reporting: Provides data for balance sheets, P&L statements, and tax filings.
- Audit Compliance: Maintains historical records for regulatory and internal audits.
2. Key Columns and Relationships
The table's schema includes columns that link to other Fixed Assets tables (e.g.,FA_ASSETS
, FA_BOOKS
). Notable columns:
- ASSET_ID: Foreign key referencing
FA_ASSETS
, uniquely identifying the asset. - BOOK_TYPE_CODE: Links to
FA_BOOKS
, specifying the depreciation book (e.g., corporate, tax). - PERIOD_COUNTER: Ties to
FA_DEPRN_PERIODS
, marking the accounting period. - DEPRN_AMOUNT: The calculated depreciation for the period.
- YTD_DEPRN: Year-to-date depreciation accumulation.
- DEPRN_RESERVE: Total accumulated depreciation over the asset’s life.
- ADJUSTMENT_AMOUNT: Captures manual adjustments to depreciation.
3. Depreciation Calculation Logic
Oracle EBS computes depreciation using methods (e.g., straight-line, declining balance) defined inFA_METHODS
. The FA_DEPRN_DETAIL
table stores results of these calculations, including:
- Pro-rated depreciation for partial periods.
- Impact of salvage value and cost adjustments.
- Recapture amounts for retired assets.
4. Integration with Other Modules
Data flows betweenFA_DEPRN_DETAIL
and:
- General Ledger (GL): Depreciation journals are posted via
FA_DEPRN_SUMMARY
. - Subledger Accounting (SLA): Ensures compliance with accounting standards.
- Tax Reporting: Supports tax-specific books for regional compliance.
5. Performance and Maintenance Considerations
For large asset volumes:- Indexing: Key columns (
ASSET_ID
,BOOK_TYPE_CODE
,PERIOD_COUNTER
) should be indexed. - Partitioning: Consider partitioning by
BOOK_TYPE_CODE
or fiscal year. - Purging: Archive old records using
FA_PURGE
utilities to optimize performance.
6. Common Use Cases
- Period Close: Validate depreciation totals before GL posting.
- Asset Reconciliation: Compare
DEPRN_RESERVE
with net book value. - Tax Audits: Extract historical depreciation for tax authorities.
7. Example Query
To retrieve depreciation details for an asset:SELECT asset_id, period_counter, deprn_amount, ytd_deprn, deprn_reserve FROM fa_deprn_detail WHERE book_type_code = 'CORPORATE' AND asset_id = 1001 ORDER BY period_counter;
Conclusion
TheFA_DEPRN_DETAIL
table is foundational for accurate depreciation management in Oracle EBS. Its design ensures traceability, supports diverse accounting requirements, and integrates seamlessly with other modules. Proper maintenance and understanding of its structure are essential for financial integrity and compliance.
-
Table: FA_DEPRN_DETAIL
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_DEPRN_DETAIL, object_name:FA_DEPRN_DETAIL, status:VALID, product: OFA - Assets , description: Depreciation amounts charged to the depreciation expense account in each distribution line , implementation_dba_data: FA.FA_DEPRN_DETAIL ,
-
Table: FA_DEPRN_DETAIL
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_DEPRN_DETAIL, object_name:FA_DEPRN_DETAIL, status:VALID, product: OFA - Assets , description: Depreciation amounts charged to the depreciation expense account in each distribution line , implementation_dba_data: FA.FA_DEPRN_DETAIL ,
-
APPS.IGI_IAC_REVAL_UTILITIES dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.FA_DELETION_PUB dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.FA_STD_TYPES dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.FA_WHATIF_DEPRN2_PKG dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.FA_QUERY_BALANCES_PKG dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.FII_FA_EXP_B_C dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.IGI_IGIIARRD_XMLP_PKG dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.FA_FASCOSTS_XMLP_PKG dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.FA_XLA_EXTRACT_DEPRN_PKG dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.IGI_IAC_PROJ_PKG dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.IGI_IGIIARSV_XMLP_PKG dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.FA_DEPRN_DETAIL_PKG dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.FA_STD_TYPES dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.IGI_IGIIABLD_XMLP_PKG dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.JE_JEHUFAMS_XMLP_PKG dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.IGI_IAC_TRANSFERS_PKG dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.FA_FAS401_XMLP_PKG dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.FA_IMPAIRMENT_DELETE_PVT dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.IGI_IGIIACST_XMLP_PKG dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.IGI_IAC_PROJ_PKG dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.IGI_IAC_ADJ_COST_REVAL_PKG dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.IGI_IAC_ADJ_AMORT_PKG dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.IGI_IMP_IAC_TRANSFER_PKG dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.FA_FAS403_XMLP_PKG dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.IGI_IGIIABLD_XMLP_PKG dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.JL_CO_FA_ACCOUNTING_PKG dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.FA_SLA_EVENTS_UPG_PKG dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.FA_TRANSFER_PVT dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.IGI_IGIIAOPD_XMLP_PKG dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.FA_MC_UPG3_PKG dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.IGI_IMP_IAC_PREPARE_PKG dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.FA_INS_ADJUST_PKG dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.IGI_IGIIACSD_XMLP_PKG dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.FA_FAS480_XMLP_PKG dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.FA_INS_DETAIL_PKG dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.FA_DEPRN_DETAIL_PKG dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.FA_ASSET_VAL_PVT dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.FA_DEPRN_EVENTS_PKG dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.FARX_BL dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.FA_ASSET_SUMM_RPT_PKG dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.FARX_AD dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.FA_SORP_UPG_PKG dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.IGI_IAC_TYPES dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.FA_DEFERRED_DEPRN_PKG dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.IGI_IMP_IAC_TRANSFER_PKG dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.FA_QUERY_BALANCES_PKG dependencies on FA_DEPRN_DETAIL
12.2.2
-
APPS.FA_TRACK_MEMBER_PVT dependencies on FA_DEPRN_DETAIL
12.1.1
-
APPS.FA_FASRSVED_XMLP_PKG dependencies on FA_DEPRN_DETAIL
12.1.1