DBA Data[Home] [Help]

APPS.FA_TRACK_MEMBER_PVT dependencies on FA_DEPRN_DETAIL

Line 5359: -- into FA_ADJ or FA_DEPRN_DETAIL/SUMMARY in case

5355: --
5356: -- Description:
5357: --
5358: -- This function is called to insert allocated amount
5359: -- into FA_ADJ or FA_DEPRN_DETAIL/SUMMARY in case
5360: -- that Unplanned Depreciation is made.
5361: --
5362: ----------------------------------------------------------------------------
5363:

Line 5700: from fa_deprn_detail_mrc_v

5696: if (p_mrc_sob_type_code = 'R') then
5697:
5698: select sum(nvl(deprn_adjustment_amount, 0))
5699: into l_deprn_adjustment_amount
5700: from fa_deprn_detail_mrc_v
5701: where asset_id = p_asset_hdr_rec.asset_id
5702: and book_type_code = p_asset_hdr_rec.book_type_code;
5703:
5704: else -- primary

Line 5708: from fa_deprn_detail

5704: else -- primary
5705:
5706: select sum(nvl(deprn_adjustment_amount, 0))
5707: into l_deprn_adjustment_amount
5708: from fa_deprn_detail
5709: where asset_id = p_asset_hdr_rec.asset_id
5710: and book_type_code = p_asset_hdr_rec.book_type_code;
5711:
5712: end if;