Search Results salvage_value
Overview
APPS.FA_SXL_BOOKS_V is a filtered view over the Oracle Assets depreciation books table, FA_BOOKS. In Oracle E-Business Suite 12.1.1 and 12.2.2, it is used by the Asset Revaluation and Rate Adjustment processing logic. The view isolates asset book records that satisfy a specific set of conditions indicating that a rate adjustment or related revaluation processing condition applies. Rather than presenting every depreciation book row, FA_SXL_BOOKS_V surfaces only the subset of records that meet its filtering predicate, which is significant for users investigating the salvage_value column, since the view explicitly requires SALVAGE_VALUE to be non-zero.
The view is owned by the APPS schema and is exposed through a synonym over the base FA_BOOKS table. It is not intended as a general-purpose reporting view; instead it supports the internal rate adjustment / salvage value recalculation path within Oracle Assets.
Underlying Base Objects
The only documented base object referenced by this view is FA_BOOKS, accessed through a synonym. FA_BOOKS stores one row per asset per depreciation book, holding cost, salvage value, depreciation method, life, and adjustment tracking columns. FA_SXL_BOOKS_V selects a defined column subset from FA_BOOKS and applies a restrictive WHERE clause that leaves only records satisfying all of the following:
- DATE_INEFFECTIVE IS NULL — the book record is currently active.
- PERIOD_COUNTER_LIFE_COMPLETE IS NOT NULL — the asset's life has been fully depreciated.
- SALVAGE_VALUE != 0 — the asset carries a non-zero salvage value.
- RECOVERABLE_COST < ADJUSTED_RECOVERABLE_COST — the recoverable cost is below its adjusted counterpart.
- PERIOD_COUNTER_FULLY_RESERVED IS NULL — the asset is not fully reserved.
- RATE_ADJUSTMENT_FACTOR <= 1 — the rate adjustment factor does not exceed one.
Because the view projects ROWID as ROW_ID and does not join to other tables, it is a single-table filtered projection rather than a join view.
Key Columns
The columns exposed by FA_SXL_BOOKS_V correspond directly to FA_BOOKS attributes:
- ROW_ID — the ROWID of the underlying FA_BOOKS row.
- BOOK_TYPE_CODE — the depreciation book identifier.
- ASSET_ID — the unique asset identifier.
- SALVAGE_VALUE — the asset's salvage value; the view requires this to be non-zero.
- ADJUSTED_RATE — the adjusted depreciation rate applied to the asset.
- ADJUSTED_COST — the adjusted cost basis.
- LIFE_IN_MONTHS — the asset life expressed in months.
- DATE_INEFFECTIVE — the date the book record became ineffective; always NULL within this view.
- RATE_ADJUSTMENT_FACTOR — the factor governing rate adjustment; constrained to values less than or equal to one.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — audit columns.
- PERIOD_COUNTER_FULLY_RESERVED and PERIOD_COUNTER_LIFE_COMPLETE — period counters tracking full reservation and life completion.
- ANNUAL_DEPRN_ROUNDING_FLAG — controls annual depreciation rounding behavior.
Common Use Cases and Queries
A typical application of this view is diagnosing assets with salvage values that participated in rate adjustment calculations. A representative query lists the assets in a given book with a non-zero salvage value whose life is complete:
SELECT asset_id, book_type_code, salvage_value, adjusted_rate, adjusted_cost, rate_adjustment_factor FROM apps.fa_sxl_books_v WHERE book_type_code = :book AND asset_id = :asset_id;SELECT book_type_code, COUNT(*) FROM apps.fa_sxl_books_v GROUP BY book_type_code;
These queries help validate that the view is returning only the records that meet the documented filter conditions. Because the view restricts SALVAGE_VALUE to non-zero values, it is particularly useful when investigating salvage value adjustments and their interaction with rate adjustment factors.
-
VIEW: APPS.FA_SXL_BOOKS_V
12.2.2
-
VIEW: APPS.FA_SXL_BOOKS_V
12.1.1
-
VIEW: IGI.IGI_IAC_ADJUSTMENTS_HISTORY#
12.2.2
-
VIEW: IGI.IGI_MHC_GEN_INTERFACE#
12.2.2
-
View: FA_SXL_BOOKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_SXL_BOOKS_V, object_name:FA_SXL_BOOKS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_SXL_BOOKS_V ,
-
View: FA_SXL_BOOKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_SXL_BOOKS_V, object_name:FA_SXL_BOOKS_V, status:VALID, product: OFA - Assets , implementation_dba_data: APPS.FA_SXL_BOOKS_V ,
-
VIEW: FA.FA_BOOKS_GROUPS#
12.2.2
-
VIEW: OKL.OKL_CONTRACT_ASSET_H#
12.2.2
-
VIEW: IGI.IGI_MHC_REVALUATION_DETAIL#
12.2.2
-
VIEW: OKL.OKL_TXD_ASSETS_B#
12.2.2
-
VIEW: FA.FA_DEPRN_REP_ITF#
12.2.2
-
VIEW: FA.FA_MC_BOOKS_GROUPS#
12.2.2
-
VIEW: FA.FA_ADJUSTMENTS_T#
12.2.2
-
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: OKL_LA_BOOK_DEPRN_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_BOOK_DEPRN_UV, object_name:OKL_LA_BOOK_DEPRN_UV, status:VALID, product: OKL - Lease and Finance Management , description: User interface view for asset book depreciation page , implementation_dba_data: APPS.OKL_LA_BOOK_DEPRN_UV ,
-
VIEW: OKL.OKL_TXL_ASSETS_B#
12.2.2
-
View: FABV_ASSET_BKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FABV_ASSET_BKS, object_name:FABV_ASSET_BKS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FABV_ASSET_BKS ,
-
View: FABV_ASSET_BKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FABV_ASSET_BKS, object_name:FABV_ASSET_BKS, status:VALID, product: OFA - Assets , description: - Retrofitted , implementation_dba_data: APPS.FABV_ASSET_BKS ,
-
VIEW: APPS.OKL_LA_BOOK_DEPRN_UV
12.2.2
-
View: OKL_AM_ASSET_DETAILS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_DETAILS_UV, object_name:OKL_AM_ASSET_DETAILS_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_ASSET_DETAILS_UV ,
-
VIEW: APPS.FA_TRANS_HIST_BOOKS_WEB_V
12.1.1
-
View: OKL_LA_BOOK_DEPRN_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_BOOK_DEPRN_UV, object_name:OKL_LA_BOOK_DEPRN_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User interface view for asset book depreciation page , implementation_dba_data: APPS.OKL_LA_BOOK_DEPRN_UV ,
-
VIEW: FA.FA_TAX_INTERFACE#
12.2.2
-
VIEW: APPS.FABV_ASSET_BKS
12.2.2
-
VIEW: APPS.FABV_ASSET_BKS
12.1.1
-
View: OKL_AM_ASSET_DETAILS_CHR_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_DETAILS_CHR_UV, object_name:OKL_AM_ASSET_DETAILS_CHR_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_ASSET_DETAILS_CHR_UV ,
-
View: OKL_AM_ASSET_DETAILS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_DETAILS_UV, object_name:OKL_AM_ASSET_DETAILS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_ASSET_DETAILS_UV ,
-
View: OKL_AM_ASSET_DETAILS_CHR_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_DETAILS_CHR_UV, object_name:OKL_AM_ASSET_DETAILS_CHR_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_ASSET_DETAILS_CHR_UV ,
-
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 ,
-
VIEW: APPS.FA_ASSET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_ASSET_V, object_name:FA_ASSET_V, status:VALID,
-
VIEW: FA.FA_BOOKS_SUMMARY#
12.2.2
-
VIEW: FA.FA_BOOKS_SUMMARY_T#
12.2.2
-
View: OKL_SPLIT_ASSET_TRX_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_SPLIT_ASSET_TRX_UV, object_name:OKL_SPLIT_ASSET_TRX_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User interface view for Split Asset Data Object , implementation_dba_data: APPS.OKL_SPLIT_ASSET_TRX_UV ,
-
VIEW: APPS.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,
-
View: OKL_SPLIT_ASSET_TRX_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_SPLIT_ASSET_TRX_UV, object_name:OKL_SPLIT_ASSET_TRX_UV, status:VALID, product: OKL - Lease and Finance Management , description: User interface view for Split Asset Data Object , implementation_dba_data: APPS.OKL_SPLIT_ASSET_TRX_UV ,
-
VIEW: APPS.FA_SXL_BOOKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_SXL_BOOKS_V, object_name:FA_SXL_BOOKS_V, status:VALID,
-
View: IGI_MHC_CURR_REVAL_DTL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_MHC_CURR_REVAL_DTL_V, object_name:IGI_MHC_CURR_REVAL_DTL_V, status:VALID, product: IGI - Public Sector Financials International , description: IGI_MHC_CURR_REVAL_DTL_V holds the current active records for each run of Revaluation. Since Revaluation can be run in Live and Preview modes, data for all the runs is stored in the IGI_MHC_REVALUATION_DETAIL. This view filters and holds , implementation_dba_data: APPS.IGI_MHC_CURR_REVAL_DTL_V ,
-
VIEW: APPS.OKL_LA_BOOK_DEPRN_UV
12.1.1
-
PACKAGE BODY: APPS.FAP_CALCULATE
12.1.1
-
VIEW: APPS.FA_SXL_BOOKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_SXL_BOOKS_V, object_name:FA_SXL_BOOKS_V, status:VALID,
-
VIEW: IGI.IGI_IAC_ADJUSTMENTS_HISTORY#
12.2.2
owner:IGI, object_type:VIEW, object_name:IGI_IAC_ADJUSTMENTS_HISTORY#, status:VALID,
-
VIEW: FA.FA_MC_BOOKS_SUMMARY#
12.2.2
-
VIEW: APPS.FA_TRANS_HIST_BOOKS_WEB_V
12.2.2
-
TABLE: FA.FA_MRC_INQ_FINANCIALS
12.1.1
owner:FA, object_type:TABLE, object_name:FA_MRC_INQ_FINANCIALS, status:VALID,
-
View: IGI_MHC_CURR_REVAL_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_MHC_CURR_REVAL_DTL_V, object_name:IGI_MHC_CURR_REVAL_DTL_V, status:VALID, product: IGI - Public Sector Financials International , description: IGI_MHC_CURR_REVAL_DTL_V holds the current active records for each run of Revaluation. Since Revaluation can be run in Live and Preview modes, data for all the runs is stored in the IGI_MHC_REVALUATION_DETAIL. This view filters and holds , implementation_dba_data: APPS.IGI_MHC_CURR_REVAL_DTL_V ,
-
APPS.FA_CALC_DEPRN_BASIS1_PKG SQL Statements
12.1.1
-
VIEW: APPS.OKL_AM_ASSET_DETAILS_CHR_UV
12.2.2
-
VIEW: APPS.OKL_AM_ASSET_DETAILS_UV
12.2.2
-
PACKAGE BODY: APPS.FAP_CALCULATE
12.2.2
-
VIEW: APPS.OKL_AM_ASSET_DETAILS_UV
12.1.1