DBA Data[Home] [Help]

APPS.FA_ADDITION_PUB dependencies on FA_ASSET_VAL_PVT

Line 513: if (NOT fa_asset_val_pvt.validate (

509: end if;
510:
511:
512: -- Complete the initial validation of the asset.
513: if (NOT fa_asset_val_pvt.validate (
514: p_trans_rec => l_trans_rec,
515: p_asset_hdr_rec => l_asset_hdr_rec,
516: p_asset_desc_rec => px_asset_desc_rec,
517: p_asset_type_rec => px_asset_type_rec,

Line 636: if not FA_ASSET_VAL_PVT.validate_over_depreciation

632: l_mrc_asset_deprn_rec_adj := l_mrc_asset_deprn_rec_new;
633:
634: /*Bug15923003 - Movied valiation inside loop so that it is called for both primary as well as reporting */
635: if px_asset_fin_rec.group_asset_id is not null then
636: if not FA_ASSET_VAL_PVT.validate_over_depreciation
637: (p_asset_hdr_rec => l_mrc_asset_hdr_rec,
638: p_asset_fin_rec => l_mrc_asset_fin_rec_adj,
639: p_validation_type => 'ADDITION',
640: p_cost_adj => l_mrc_asset_fin_rec_adj.cost,

Line 783: if not FA_ASSET_VAL_PVT.validate_period_of_addition

779: p_log_level_rec => g_log_level_rec) then
780: raise add_err1;
781: end if;
782:
783: if not FA_ASSET_VAL_PVT.validate_period_of_addition
784: (p_asset_id => l_group_asset_hdr_rec.asset_id,
785: p_book => l_group_asset_hdr_rec.book_type_code,
786: p_mode => 'ABSOLUTE',
787: px_period_of_addition => l_group_asset_hdr_rec.period_of_addition,

Line 831: if not FA_ASSET_VAL_PVT.validate_disabled_flag

827: end if;
828:
829: --HH Validate disabled_flag
830: --We don't want to perform any transaction on a disabled group.
831: if not FA_ASSET_VAL_PVT.validate_disabled_flag
832: (p_group_asset_id => l_group_asset_hdr_rec.asset_id,
833: p_book_type_code => l_group_asset_hdr_rec.book_type_code,
834: p_old_flag => l_group_asset_fin_rec_old.disabled_flag,
835: p_new_flag => l_group_asset_fin_rec_old.disabled_flag,