Search Results mass_reval_id
Overview
APPS.IGI_MHC_REVAL_SUMMARY_PL_V is a reporting view in Oracle E-Business Suite that exposes revaluation summary records for mass revaluations processed in a specific run mode. The suffix "PL" in the object name denotes the "Post Later" run mode, which is confirmed by the view definition predicate RUN_MODE = 'L'. This view is primarily associated with the IGI (iProcurement-adjacent asset management) mass revaluation functionality that operates within the Oracle Assets revaluation framework.
The view presents a curated, de-duplicated snapshot of mass revaluation summary rows, filtering out inactive records and retaining only the most recent revaluation result for each asset, book, and mass revaluation period. It plays a reporting and integration role: downstream concurrent programs, Oracle Reports, and custom SQL queries can consume the view to obtain the latest valid "Post Later" revaluation outcome without re-implementing the complex MAX(ROWID) and MAX(MASS_REVAL_ID) de-duplication logic.
Underlying Base Objects
The view is defined over a single documented base object: IGI_MHC_REVALUATION_SUMMARY (referenced in the APPS schema as a synonym, aliased MRS in the view text). The view is not a simple projection; it embeds a correlated subquery that self-joins the base table twice (aliases IMRS2 and IMRS3) to isolate the latest active row.
The core filter conditions are:
RUN_MODE = 'L'— restricts to Post Later processing.NVL(ACTIVE_FLAG,'Y') <> 'N'— excludes explicitly deactivated rows while treating NULL as active.- A composite key match on (MASS_REVAL_ID, ASSET_ID, CURRENT_MHC_PERIOD_COUNTER, ROWID) equal to the aggregation result, using
MAX(IMRS2.ROWID). - An inner nesting that selects
MAX(IMRS3.MASS_REVAL_ID)for the asset, book type, run mode, and current period counter combination.
Because the view relies on the ROWID pseudo-column and nested aggregations, it is read-oriented and should not be treated as an updateable view.
Key Columns
The user search focused on ASSET_ID, which is the primary asset identifier and a central column of the view. Other significant columns include:
MASS_REVAL_ID— identifier of the mass revaluation batch.ASSET_ID— the asset being revalued; key join column to asset tables.CATEGORY_ID,BOOK_TYPE_CODE— asset category and depreciation book context.CURRENT_MHC_PERIOD_COUNTER,PERIOD_COUNTER,DPIS_MHC_PERIOD_COUNTER— period tracking for the revaluation.ACTIVE_FLAG,RUN_MODE,REVAL_MODE,LIFE_CHANGE_COUNT— status and mode indicators (RUN_MODE is always 'L' here).ORIGINAL_COST,NEW_ASSET_COST,NEW_SALVAGE_VALUE— cost and salvage before and after revaluation.ORIGINAL_LIFE,PREVIOUS_LIFE,CURRENT_LIFE— useful life values through the revaluation.OLD_ACCUM_DEPRN,NEW_ACCUM_DEPRN,OLD_REVAL_RESERVE,NEW_REVAL_RESERVE— accumulated depreciation and revaluation reserve impacts.NEW_CURR_YR_EXPENSE,NEW_BACKLOG_DEPRN,NEW_CURR_YR_OP_EXPENSE,NEW_PRIOR_YR_OP_EXPENSE— depreciation expense components.NEW_GENERAL_FUND,NEW_ACCUM_GENERAL_FUND— general fund allocations.LAST_TXN_EVENT— the most recent transaction event applied.- Audit columns:
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Because the user searched for ASSET_ID, the most common query pattern retrieves revaluation results for a given asset:
SELECT asset_id, mass_reval_id, book_type_code,
original_cost, new_asset_cost,
old_accum_deprn, new_accum_deprn,
new_reval_reserve, last_txn_event
FROM apps.igi_mhc_reval_summary_pl_v
WHERE asset_id = :p_asset_id;
Other practical scenarios include reconciling revaluation reserves by book (GROUP BY book_type_code), identifying assets whose revaluation posted later (RUN_MODE = 'L'), and validating life changes (PREVIOUS_LIFE <> CURRENT_LIFE). Reports frequently join this view back to FA_ADDITIONS on ASSET_ID to enrich output with asset descriptions.
-
VIEW: APPS.IGI_MHC_REVAL_SUMMARY_PL_V
12.2.2
-
VIEW: IGI.IGI_MHC_MCPP_RUN#
12.2.2
-
VIEW: FA.FA_SORP_UPG_IMPREVAL#
12.2.2
-
VIEW: APPS.IGI_MHC_REVAL_SUMMARY_PL_V
12.1.1
-
View: IGI_MHC_REVAL_SUMMARY_PL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_MHC_REVAL_SUMMARY_PL_V, object_name:IGI_MHC_REVAL_SUMMARY_PL_V, status:VALID, product: IGI - Public Sector Financials International , description: IGI_MHC_REVAL_SUMMARY_PL_V holds data for all the Live runs of Revaluation done for the Previous periods , implementation_dba_data: APPS.IGI_MHC_REVAL_SUMMARY_PL_V ,
-
VIEW: FA.FA_SORP_UPG_IMPREVAL_HIST#
12.2.2
-
VIEW: APPS.IGI_MHC_REVAL_SUMMARY_LL_V
12.2.2
-
View: IGI_MHC_REVAL_SUMMARY_LL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_MHC_REVAL_SUMMARY_LL_V, object_name:IGI_MHC_REVAL_SUMMARY_LL_V, status:VALID, product: IGI - Public Sector Financials International , description: IGI_MHC_REVAL_SUMMARY_LL_V holds the revaluation details at each asset level for the Live Revaluation run that was done for thecurrent period. , implementation_dba_data: APPS.IGI_MHC_REVAL_SUMMARY_LL_V ,
-
VIEW: FA.FA_SORP_LINK_REVAL_ITF#
12.2.2
-
VIEW: APPS.IGI_MHC_REVAL_DETAILS_PL_V
12.1.1
-
VIEW: APPS.IGI_MHC_REVAL_DETAILS_PL_V
12.2.2
-
View: IGI_MHC_REVAL_SUMMARY_PL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_MHC_REVAL_SUMMARY_PL_V, object_name:IGI_MHC_REVAL_SUMMARY_PL_V, status:VALID, product: IGI - Public Sector Financials International , description: IGI_MHC_REVAL_SUMMARY_PL_V holds data for all the Live runs of Revaluation done for the Previous periods , implementation_dba_data: APPS.IGI_MHC_REVAL_SUMMARY_PL_V ,
-
VIEW: APPS.IGI_MHC_REVAL_SUMMARY_LL_V
12.1.1
-
VIEW: IGI.IGI_MHC_REVALUATION_DETAIL#
12.2.2
-
VIEW: FA.FA_REVAL_LINK_IMP_CAT#
12.2.2
-
View: IGI_MHC_REVAL_SUMMARY_LL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_MHC_REVAL_SUMMARY_LL_V, object_name:IGI_MHC_REVAL_SUMMARY_LL_V, status:VALID, product: IGI - Public Sector Financials International , description: IGI_MHC_REVAL_SUMMARY_LL_V holds the revaluation details at each asset level for the Live Revaluation run that was done for thecurrent period. , implementation_dba_data: APPS.IGI_MHC_REVAL_SUMMARY_LL_V ,
-
VIEW: FA.FA_REVAL_LINK_IMP_ASSET#
12.2.2
-
TABLE: FA.FA_MASS_REVALUATION_RULES
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MASS_REVALUATION_RULES, object_name:FA_MASS_REVALUATION_RULES, status:VALID,
-
VIEW: FA.FA_MASS_REVAL_REP_ITF#
12.2.2
-
VIEW: IGI.IGI_MHC_REVALUATION_SUMMARY#
12.2.2
-
VIEW: IGI.IGI_MHC_IDX_REVALUATIONS#
12.2.2
-
View: IGI_MHC_REVAL_DETAILS_LL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_MHC_REVAL_DETAILS_LL_V, object_name:IGI_MHC_REVAL_DETAILS_LL_V, status:VALID, product: IGI - Public Sector Financials International , description: IGI_MHC_REVAL_DETAILS_LL_V holds the revaluation details at the distribution level for each asset level for the Live Revaluation run that was done for the current period. , implementation_dba_data: APPS.IGI_MHC_REVAL_DETAILS_LL_V ,
-
VIEW: APPS.IGI_MHC_CURR_REVAL_DTL_V
12.2.2
-
VIEW: APPS.IGI_MHC_CURR_REVAL_DTL_V
12.1.1
-
VIEW: APPS.IGI_MHC_REVAL_DETAILS_LL_V
12.1.1
-
VIEW: APPS.IGI_MHC_REVAL_DETAILS_LL_V
12.2.2
-
VIEW: IGI.IGI_MHC_IDX_REVALUATION_RULES#
12.2.2
-
APPS.FA_FASRVPVW_XMLP_PKG SQL Statements
12.2.2
-
VIEW: FA.FA_MASS_REVALUATION_RULES#
12.2.2
-
View: IGI_MHC_REVAL_DETAILS_PL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_MHC_REVAL_DETAILS_PL_V, object_name:IGI_MHC_REVAL_DETAILS_PL_V, status:VALID, product: IGI - Public Sector Financials International , description: IGI_MHC_REVAL_SUMMARY_PL_V holds data for each distribution of an asset for all the Live runs of Revaluation done for the Previous periods , implementation_dba_data: APPS.IGI_MHC_REVAL_DETAILS_PL_V ,
-
View: IGI_MHC_REVAL_DETAILS_PL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_MHC_REVAL_DETAILS_PL_V, object_name:IGI_MHC_REVAL_DETAILS_PL_V, status:VALID, product: IGI - Public Sector Financials International , description: IGI_MHC_REVAL_SUMMARY_PL_V holds data for each distribution of an asset for all the Live runs of Revaluation done for the Previous periods , implementation_dba_data: APPS.IGI_MHC_REVAL_DETAILS_PL_V ,
-
VIEW: FA.FA_MASS_REVALUATIONS#
12.2.2
-
APPS.FA_FASRVPVW_XMLP_PKG SQL Statements
12.1.1
-
View: IGI_MHC_REVAL_DETAILS_LL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_MHC_REVAL_DETAILS_LL_V, object_name:IGI_MHC_REVAL_DETAILS_LL_V, status:VALID, product: IGI - Public Sector Financials International , description: IGI_MHC_REVAL_DETAILS_LL_V holds the revaluation details at the distribution level for each asset level for the Live Revaluation run that was done for the current period. , implementation_dba_data: APPS.IGI_MHC_REVAL_DETAILS_LL_V ,
-
VIEW: IGI.IGI_MHC_MCPP_RUN#
12.2.2
owner:IGI, object_type:VIEW, object_name:IGI_MHC_MCPP_RUN#, status:VALID,
-
TABLE: IGI.IGI_MHC_REVALUATION_SUMMARY
12.2.2
owner:IGI, object_type:TABLE, fnd_design_data:IGI.IGI_MHC_REVALUATION_SUMMARY, object_name:IGI_MHC_REVALUATION_SUMMARY, status:VALID,
-
TABLE: FA.FA_MASS_REVALUATION_RULES
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MASS_REVALUATION_RULES, object_name:FA_MASS_REVALUATION_RULES, status:VALID,
-
TABLE: FA.FA_MASS_REVALUATIONS
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MASS_REVALUATIONS, object_name:FA_MASS_REVALUATIONS, status:VALID,
-
VIEW: FA.FA_REVAL_LINK_IMP_ASSET#
12.2.2
owner:FA, object_type:VIEW, object_name:FA_REVAL_LINK_IMP_ASSET#, status:VALID,
-
VIEW: FA.FA_SORP_UPG_IMPREVAL#
12.2.2
owner:FA, object_type:VIEW, object_name:FA_SORP_UPG_IMPREVAL#, status:VALID,
-
TABLE: IGI.IGI_MHC_REVALUATION_SUMMARY
12.1.1
owner:IGI, object_type:TABLE, fnd_design_data:IGI.IGI_MHC_REVALUATION_SUMMARY, object_name:IGI_MHC_REVALUATION_SUMMARY, status:VALID,
-
TABLE: FA.FA_MASS_REVAL_REP_ITF
12.1.1
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_MASS_REVAL_REP_ITF, object_name:FA_MASS_REVAL_REP_ITF, 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 ,
-
VIEW: FA.FA_REVAL_LINK_IMP_CAT#
12.2.2
owner:FA, object_type:VIEW, object_name:FA_REVAL_LINK_IMP_CAT#, status:VALID,
-
VIEW: FA.FA_SORP_LINK_REVAL_ITF#
12.2.2
owner:FA, object_type:VIEW, object_name:FA_SORP_LINK_REVAL_ITF#, status:VALID,
-
VIEW: FA.FA_MASS_REVAL_REP_ITF#
12.2.2
owner:FA, object_type:VIEW, object_name:FA_MASS_REVAL_REP_ITF#, status:VALID,
-
VIEW: FA.FA_SORP_UPG_IMPREVAL_HIST#
12.2.2
owner:FA, object_type:VIEW, object_name:FA_SORP_UPG_IMPREVAL_HIST#, status:VALID,
-
VIEW: IGI.IGI_MHC_IDX_REVALUATION_RULES#
12.2.2
owner:IGI, object_type:VIEW, object_name:IGI_MHC_IDX_REVALUATION_RULES#, status:VALID,
-
TABLE: FA.FA_REVAL_LINK_IMP_CAT
12.2.2
owner:FA, object_type:TABLE, fnd_design_data:OFA.FA_REVAL_LINK_IMP_CAT, object_name:FA_REVAL_LINK_IMP_CAT, 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 ,