DBA Data[Home] [Help]

APPS.FA_ADJUSTMENT_PUB dependencies on FA_ASSET_VAL_PVT

Line 137: if not FA_ASSET_VAL_PVT.validate_asset_book

133:
134: px_asset_hdr_rec.set_of_books_id := fa_cache_pkg.fazcbc_record.set_of_books_id;
135:
136: -- verify the asset exist in the book already
137: if not FA_ASSET_VAL_PVT.validate_asset_book
138: (p_transaction_type_code => 'ADJUSTMENT',
139: p_book_type_code => px_asset_hdr_rec.book_type_code,
140: p_asset_id => px_asset_hdr_rec.asset_id,
141: p_calling_fn => l_calling_fn,

Line 342: if not FA_ASSET_VAL_PVT.validate_period_of_addition

338: end if;
339:
340: -- also check if this is the period of addition - use absolute mode for adjustments
341: -- we will only clear cost outside period of addition
342: if not FA_ASSET_VAL_PVT.validate_period_of_addition
343: (p_asset_id => px_asset_hdr_rec.asset_id,
344: p_book => px_asset_hdr_rec.book_type_code,
345: p_mode => 'ABSOLUTE',
346: px_period_of_addition => px_asset_hdr_rec.period_of_addition,

Line 409: if not (FA_ASSET_VAL_PVT.validate_asset_book

405:
406: -- verify that the asset exists in the tax book
407: -- if not just bypass it
408:
409: if not (FA_ASSET_VAL_PVT.validate_asset_book
410: (p_transaction_type_code => 'ADJUSTMENT',
411: p_book_type_code => l_tax_book_tbl(l_tax_index),
412: p_asset_id => px_asset_hdr_rec.asset_id,
413: p_calling_fn => l_calling_fn,

Line 735: if not FA_ASSET_VAL_PVT.validate_period_of_addition

731: end if;
732:
733: -- check if this is the period of addition - use absolute mode for adjustments
734:
735: if not FA_ASSET_VAL_PVT.validate_period_of_addition
736: (p_asset_id => px_asset_hdr_rec.asset_id,
737: p_book => px_asset_hdr_rec.book_type_code,
738: p_mode => 'ABSOLUTE',
739: px_period_of_addition => px_asset_hdr_rec.period_of_addition,

Line 756: if fa_asset_val_pvt.validate_fully_retired

752:
753: -- moving subtype/date logic into the mrc loop after getting fin_rec_old
754:
755: -- verify asset is not fully retired
756: if fa_asset_val_pvt.validate_fully_retired
757: (p_asset_id => px_asset_hdr_rec.asset_id,
758: p_book => px_asset_hdr_rec.book_type_code,
759: p_log_level_rec => p_log_level_rec) then
760: fa_srvr_msg.add_message

Line 815: if not FA_ASSET_VAL_PVT.validate_disabled_flag

811: -- HH
812: -- Validate disabled_flag
813: if (p_asset_type_rec.asset_type = 'GROUP') then
814:
815: if not FA_ASSET_VAL_PVT.validate_disabled_flag
816: (p_group_asset_id => px_asset_hdr_rec.asset_id,
817: p_book_type_code => px_asset_hdr_rec.book_type_code,
818: p_old_flag => l_asset_fin_rec_old.disabled_flag,
819: p_new_flag => p_asset_fin_rec_adj.disabled_flag,

Line 825: if not FA_ASSET_VAL_PVT.validate_sal_deprn_sum

821: raise adj_err;
822: end if;
823:
824: /* Bug#7693266- Validate salvage_type or deprn_limit_type change of group */
825: if not FA_ASSET_VAL_PVT.validate_sal_deprn_sum
826: ( p_asset_hdr_rec => px_asset_hdr_rec,
827: p_asset_fin_rec_old => l_asset_fin_rec_old,
828: p_asset_fin_rec_adj => p_asset_fin_rec_adj ) then
829:

Line 897: if not FA_ASSET_VAL_PVT.validate_exp_after_amort

893:
894: /* Japan Tax Phase3 don't call validate_exp_after_amort for the
895: extended transaction */
896: if (not l_set_extend_flag) then
897: if not FA_ASSET_VAL_PVT.validate_exp_after_amort
898: (p_asset_id => px_asset_hdr_rec.asset_id,
899: p_book => px_asset_hdr_rec.book_type_code,
900: p_extended_flag => l_extended_flag,
901: p_log_level_rec => p_log_level_rec

Line 1080: if not FA_ASSET_VAL_PVT.validate_extended_asset

1076:
1077: /* Japan Tax phase3 -- Do not allow transactions on
1078: assets in extended depreciation */
1079: if (l_extended_flag) then
1080: if not FA_ASSET_VAL_PVT.validate_extended_asset
1081: (p_asset_hdr_rec => px_asset_hdr_rec,
1082: p_asset_fin_rec_old => l_asset_fin_rec_old,
1083: p_asset_fin_rec_adj => l_asset_fin_rec_adj
1084: ) then raise adj_err;

Line 1847: if not FA_ASSET_VAL_PVT.validate_period_of_addition

1843: p_log_level_rec => p_log_level_rec) then
1844: raise adj_err;
1845: end if;
1846:
1847: if not FA_ASSET_VAL_PVT.validate_period_of_addition
1848: (p_asset_id => l_src_asset_hdr_rec.asset_id,
1849: p_book => l_src_asset_hdr_rec.book_type_code,
1850: p_mode => 'ABSOLUTE',
1851: px_period_of_addition => l_src_asset_hdr_rec.period_of_addition,

Line 1896: if not FA_ASSET_VAL_PVT.validate_period_of_addition

1892: p_log_level_rec => p_log_level_rec) then
1893: raise adj_err;
1894: end if;
1895:
1896: if not FA_ASSET_VAL_PVT.validate_period_of_addition
1897: (p_asset_id => l_dest_asset_hdr_rec.asset_id,
1898: p_book => l_dest_asset_hdr_rec.book_type_code,
1899: p_mode => 'ABSOLUTE',
1900: px_period_of_addition => l_dest_asset_hdr_rec.period_of_addition,