Search Results fa_distribution_history
Overview
The FA_DISTRIBUTION_HISTORY table is a core transactional table within the Oracle E-Business Suite Fixed Assets module (OFA). It serves as the definitive historical ledger for tracking the assignment and movement of assets across different cost centers, locations, and employees. Every time an asset's distribution details—such as its assigned-to employee, physical location, or accounting flexfield (code combination)—are changed, a record is created or updated in this table. It provides a complete audit trail of an asset's custodial and accounting history throughout its lifecycle, from capitalization through to retirement, for each asset book.
Key Information Stored
The table's primary key is DISTRIBUTION_ID, which uniquely identifies each distribution record. Its structure captures both the specific assignment details and the transactional context of each change. Critical columns include ASSET_ID and BOOK_TYPE_CODE, which link the distribution to a specific asset in a specific depreciation book. The CODE_COMBINATION_ID stores the accounting flexfield for the asset's cost, while LOCATION_ID and ASSIGNED_TO track physical and custodial assignments. To maintain a precise audit trail, the table references FA_TRANSACTION_HEADERS via TRANSACTION_HEADER_ID_IN (the transaction that created this distribution) and TRANSACTION_HEADER_ID_OUT (the transaction that ended it). The RETIREMENT_ID links the distribution to a retirement event if applicable.
Common Use Cases and Queries
This table is central to asset tracking, audit reporting, and reconciliation. Common use cases include generating reports on asset custody by employee or location, analyzing asset movement history, and supporting period-end close processes by verifying asset cost distributions against the general ledger. A typical query retrieves the current distribution for reporting:
- SELECT dh.asset_id, dh.book_type_code, gc.concatenated_segments, loc.location_code
- FROM fa_distribution_history dh, gl_code_combinations_kfv gc, fa_locations loc
- WHERE dh.code_combination_id = gc.code_combination_id
- AND dh.location_id = loc.location_id
- AND dh.transaction_header_id_out IS NULL -- Current active distribution
- AND dh.asset_id = :p_asset_id;
Another critical pattern is tracing the full distribution history of an asset for audit purposes, joining to FA_TRANSACTION_HEADERS to get transaction dates and types.
Related Objects
FA_DISTRIBUTION_HISTORY has extensive relationships, acting as a hub for asset financial data. It is a direct child of FA_ADDITIONS_B (assets) and FA_BOOKS. Its primary distribution ID is referenced by numerous key transactional tables, most importantly FA_DEPRN_DETAIL (for depreciation calculations) and FA_ADJUSTMENTS (for manual cost adjustments). Other dependent objects include FA_DISTRIBUTION_ACCOUNTS, FA_RETIREMENTS, FA_MASS_EXT_RETIREMENTS, and the capitalized unit tracking tables (CUN_SERIALIZED_UNITS, CUN_NON_SERIALIZED_UNITS). This wide referential integrity underscores its role as the source for an asset's accounting and custodial attributes.
-
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 ,
-
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_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 ,
-
View: FA_HR_BATCH_DIST_OLD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_HR_BATCH_DIST_OLD_V, object_name:FA_HR_BATCH_DIST_OLD_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_HR_BATCH_DIST_OLD_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_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_HR_BATCH_DIST_OLD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_HR_BATCH_DIST_OLD_V, object_name:FA_HR_BATCH_DIST_OLD_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_HR_BATCH_DIST_OLD_V ,
-
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_MASS_EXT_RETIREMENTS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MASS_EXT_RETIREMENTS, object_name:FA_MASS_EXT_RETIREMENTS, status:VALID, product: OFA - Assets , description: Mass external retirements interface table. , implementation_dba_data: FA.FA_MASS_EXT_RETIREMENTS ,
-
Table: FA_MASS_EXT_RETIREMENTS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MASS_EXT_RETIREMENTS, object_name:FA_MASS_EXT_RETIREMENTS, status:VALID, product: OFA - Assets , description: Mass external retirements interface table. , implementation_dba_data: FA.FA_MASS_EXT_RETIREMENTS ,
-
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 ,
-
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: FABV_ASSET_ASSIGNS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FABV_ASSET_ASSIGNS, object_name:FABV_ASSET_ASSIGNS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FABV_ASSET_ASSIGNS ,
-
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 ,
-
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 ,
-
View: FA_DEPRN_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DEPRN_GROUPS_V, object_name:FA_DEPRN_GROUPS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_DEPRN_GROUPS_V ,
-
Table: FA_MC_ADJUSTMENTS
12.1.1
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_DEPRN_GROUPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DEPRN_GROUPS_V, object_name:FA_DEPRN_GROUPS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_DEPRN_GROUPS_V ,
-
View: FABV_ASSET_ASSIGNS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FABV_ASSET_ASSIGNS, object_name:FABV_ASSET_ASSIGNS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FABV_ASSET_ASSIGNS ,
-
Table: FA_ADJUSTMENTS
12.1.1
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_ASSET_ASSIGNS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FAFV_ASSET_ASSIGNS, object_name:FAFV_ASSET_ASSIGNS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FAFV_ASSET_ASSIGNS ,
-
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_DEFERRED_DEPRN
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_DEFERRED_DEPRN, object_name:FA_MC_DEFERRED_DEPRN, status:VALID, product: OFA - Assets , description: Deferred depreciation calculated for each distribution line in the reporting currency , implementation_dba_data: FA.FA_MC_DEFERRED_DEPRN ,
-
Table: FA_MC_DEFERRED_DEPRN
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_DEFERRED_DEPRN, object_name:FA_MC_DEFERRED_DEPRN, status:VALID, product: OFA - Assets , description: Deferred depreciation calculated for each distribution line in the reporting currency , implementation_dba_data: FA.FA_MC_DEFERRED_DEPRN ,
-
View: FAFV_ASSET_ASSIGNS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FAFV_ASSET_ASSIGNS, object_name:FAFV_ASSET_ASSIGNS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FAFV_ASSET_ASSIGNS ,
-
Table: FA_LOCATIONS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_LOCATIONS, object_name:FA_LOCATIONS, status:VALID, product: OFA - Assets , description: Location flexfield segment value combinations , implementation_dba_data: FA.FA_LOCATIONS ,
-
View: FA_DISTRIBUTION_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DISTRIBUTION_HISTORY_V, object_name:FA_DISTRIBUTION_HISTORY_V, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FA_DISTRIBUTION_HISTORY_V ,
-
Table: FA_DEFERRED_DEPRN
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_DEFERRED_DEPRN, object_name:FA_DEFERRED_DEPRN, status:VALID, product: OFA - Assets , description: Deferred depreciation calculated for each distribution line , implementation_dba_data: FA.FA_DEFERRED_DEPRN ,
-
Table: FA_LOCATIONS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_LOCATIONS, object_name:FA_LOCATIONS, status:VALID, product: OFA - Assets , description: Location flexfield segment value combinations , implementation_dba_data: FA.FA_LOCATIONS ,
-
View: FA_DISTRIBUTION_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DISTRIBUTION_HISTORY_V, object_name:FA_DISTRIBUTION_HISTORY_V, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FA_DISTRIBUTION_HISTORY_V ,
-
View: FA_DEPRN_GROUPS_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DEPRN_GROUPS_V1, object_name:FA_DEPRN_GROUPS_V1, status:VALID, product: OFA - Assets , description: Adds unplanned depreciation adjustments to fa_deprn_groups_v , implementation_dba_data: APPS.FA_DEPRN_GROUPS_V1 ,
-
View: FA_DEPRN_GROUPS_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DEPRN_GROUPS_V1, object_name:FA_DEPRN_GROUPS_V1, status:VALID, product: OFA - Assets , description: Adds unplanned depreciation adjustments to fa_deprn_groups_v , implementation_dba_data: APPS.FA_DEPRN_GROUPS_V1 ,
-
View: FA_QUICK_DISTRIBUTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_QUICK_DISTRIBUTIONS_V, object_name:FA_QUICK_DISTRIBUTIONS_V, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FA_QUICK_DISTRIBUTIONS_V ,
-
Table: FA_DEFERRED_DEPRN
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_DEFERRED_DEPRN, object_name:FA_DEFERRED_DEPRN, status:VALID, product: OFA - Assets , description: Deferred depreciation calculated for each distribution line , implementation_dba_data: FA.FA_DEFERRED_DEPRN ,
-
View: FA_QUICK_DISTRIBUTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_QUICK_DISTRIBUTIONS_V, object_name:FA_QUICK_DISTRIBUTIONS_V, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FA_QUICK_DISTRIBUTIONS_V ,
-
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_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 ,
-
View: FABV_ASSETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FABV_ASSETS, object_name:FABV_ASSETS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FABV_ASSETS ,
-
View: FABV_ASSETS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FABV_ASSETS, object_name:FABV_ASSETS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FABV_ASSETS ,
-
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 ,
-
Table: FA_MC_DEPRN_DETAIL
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_DEPRN_DETAIL, object_name:FA_MC_DEPRN_DETAIL, status:VALID, product: OFA - Assets , description: Depreciation amounts in the reporting currency, charged to the depreciation expense account in each distribution line , implementation_dba_data: FA.FA_MC_DEPRN_DETAIL ,
-
Table: FA_MC_DEPRN_DETAIL
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MC_DEPRN_DETAIL, object_name:FA_MC_DEPRN_DETAIL, status:VALID, product: OFA - Assets , description: Depreciation amounts in the reporting currency, charged to the depreciation expense account in each distribution line , implementation_dba_data: FA.FA_MC_DEPRN_DETAIL ,
-
View: FAFV_DEPRECIATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FAFV_DEPRECIATIONS, object_name:FAFV_DEPRECIATIONS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FAFV_DEPRECIATIONS ,
-
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 ,
-
View: FAFV_DEPRECIATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FAFV_DEPRECIATIONS, object_name:FAFV_DEPRECIATIONS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FAFV_DEPRECIATIONS ,
-
View: FA_DISTRIBUTION_HIST_WEB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_DISTRIBUTION_HIST_WEB_V, object_name:FA_DISTRIBUTION_HIST_WEB_V, status:VALID, product: OFA - Assets , description: Historical distribution information , implementation_dba_data: APPS.FA_DISTRIBUTION_HIST_WEB_V ,
-
Table: FA_DISTRIBUTION_ACCOUNTS
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_DISTRIBUTION_ACCOUNTS, object_name:FA_DISTRIBUTION_ACCOUNTS, status:VALID, product: OFA - Assets , description: Table to store account ccids for all distributions for a book , implementation_dba_data: FA.FA_DISTRIBUTION_ACCOUNTS ,