DBA Data[Home] [Help]

APPS.FA_ASSET_CALC_PVT dependencies on FND_PROFILE

Line 332: nvl(fnd_profile.value('FA_JAPAN_TAX_REFORMS'),'N') = 'Y' then

328: -- be set to null by adj and later set by depreciation.
329: --bug 8819226 commenting this as same thing is handelled below also.
330: /*IF (nvl(p_asset_fin_rec_old.extended_deprn_flag, '-1') <>
331: nvl(p_asset_fin_rec_adj.extended_deprn_flag, '-1')) and
332: nvl(fnd_profile.value('FA_JAPAN_TAX_REFORMS'),'N') = 'Y' then
333:
334: FA_UTIL_PVT.load_num_value
335: (p_num_old => p_asset_fin_rec_old.period_counter_fully_reserved,
336: p_num_adj => p_asset_fin_rec_adj.period_counter_fully_reserved,

Line 939: if (nvl(fnd_profile.value('FA_JAPAN_TAX_REFORMS'),'N') = 'N' OR

935: -- Bug 7491479 Need to set the period counter fully reserved if the asset was
936: -- added with cost = reserve
937: -- Bug 12556691 : Need to check deprn_limit_type to find out if deprn limit is used
938:
939: if (nvl(fnd_profile.value('FA_JAPAN_TAX_REFORMS'),'N') = 'N' OR
940: (nvl(fnd_profile.value('FA_JAPAN_TAX_REFORMS'),'N') = 'Y' AND
941: px_asset_fin_rec_new.deprn_method_code <> 'JP-STL-EXTND')) then
942: if (p_asset_type_rec.asset_type = 'CAPITALIZED') then
943: if (nvl(px_asset_fin_rec_new.cost,0) <> 0) then

Line 940: (nvl(fnd_profile.value('FA_JAPAN_TAX_REFORMS'),'N') = 'Y' AND

936: -- added with cost = reserve
937: -- Bug 12556691 : Need to check deprn_limit_type to find out if deprn limit is used
938:
939: if (nvl(fnd_profile.value('FA_JAPAN_TAX_REFORMS'),'N') = 'N' OR
940: (nvl(fnd_profile.value('FA_JAPAN_TAX_REFORMS'),'N') = 'Y' AND
941: px_asset_fin_rec_new.deprn_method_code <> 'JP-STL-EXTND')) then
942: if (p_asset_type_rec.asset_type = 'CAPITALIZED') then
943: if (nvl(px_asset_fin_rec_new.cost,0) <> 0) then
944: if (nvl(p_asset_fin_rec_adj.period_counter_fully_reserved, -- Bug 7661870

Line 980: (nvl(fnd_profile.value('FA_JAPAN_TAX_REFORMS'),'N') = 'Y') then

976: end if;
977:
978: -- Bug 8722521 : Validation for Japan methods during Tax upload
979: if (nvl(px_trans_rec.calling_interface,'X') = 'FATAXUP') and
980: (nvl(fnd_profile.value('FA_JAPAN_TAX_REFORMS'),'N') = 'Y') then
981: if not FA_ASSET_VAL_PVT.validate_jp_taxupl (
982: p_trans_rec => px_trans_rec,
983: p_asset_type_rec => p_asset_type_rec,
984: p_asset_fin_rec => px_asset_fin_rec_new,

Line 3017: and nvl(fnd_profile.value('FA_JAPAN_TAX_REFORMS'),'N') = 'Y')

3013: -- Bug 9707074 Non-JapanTax: do not change the value of both flags when deprn flag is switched ON/OFF
3014: if (((nvl(p_asset_fin_rec_old.extended_deprn_flag, '-1') <> nvl(p_asset_fin_rec_adj.extended_deprn_flag, '-1'))
3015: OR (nvl(p_asset_fin_rec_old.extended_deprn_flag, '-1') = 'Y')
3016: OR (nvl(px_trans_rec.calling_interface,'X') = 'FATAXUP'))
3017: and nvl(fnd_profile.value('FA_JAPAN_TAX_REFORMS'),'N') = 'Y')
3018: OR (nvl(p_asset_fin_rec_old.depreciate_flag, 'YES') = 'YES'
3019: AND nvl(px_asset_fin_rec_new.depreciate_flag, 'YES') = 'NO') then
3020:
3021: FA_UTIL_PVT.load_num_value