DBA Data[Home] [Help]

APPS.FA_DISTRIBUTION_PVT dependencies on FA_ASSET_VAL_PVT

Line 222: if not FA_ASSET_VAL_PVT.validate_prev_period_amort

218: -- end if; -- for bug fix 4969369
219:
220: -- Bug 9916378
221: if (l_backdated_xfr) then
222: if not FA_ASSET_VAL_PVT.validate_prev_period_amort
223: (p_asset_hdr_rec => l_asset_hdr_rec,
224: p_trans_rec => l_trans_rec,
225: p_period_rec => l_period_rec,
226: p_asset_retire_rec => null,

Line 234: if not fa_asset_val_pvt.validate_period_of_addition

230: end if;
231:
232: -- populate period_of_addition
233: -- SLA: always populate for all trx including TRANSFER OUT
234: if not fa_asset_val_pvt.validate_period_of_addition
235: (l_asset_hdr_rec.asset_id,
236: l_asset_hdr_rec.book_type_code,
237: 'ABSOLUTE',
238: l_asset_hdr_rec.period_of_addition

Line 850: if not FA_ASSET_VAL_PVT.validate_expense_ccid(p_asset_dist_tbl(p_curr_index).expense_ccid,

846: l_gl_chart_id := FA_CACHE_PKG.fazcbc_record.accounting_flex_structure;
847: end if;
848:
849: -- validate expense ccid
850: if not FA_ASSET_VAL_PVT.validate_expense_ccid(p_asset_dist_tbl(p_curr_index).expense_ccid,
851: l_gl_chart_id,
852: 'FA_DISTRIBUTION_PVT.valid_dist_data', p_log_level_rec) then
853: return FALSE;
854: end if;

Line 858: if not FA_ASSET_VAL_PVT.validate_location_ccid(

854: end if;
855:
856:
857: -- validate location id
858: if not FA_ASSET_VAL_PVT.validate_location_ccid(
859: p_trans_rec.transaction_type_code,
860: p_asset_dist_tbl(p_curr_index).location_ccid,
861: 'FA_DISTRIBUTION_PVT.valid_dist_data',
862: p_log_level_rec) then

Line 874: if not FA_ASSET_VAL_PVT.validate_duplicate_dist (

870:
871: -- bugfix 2846357
872: -- BUG# 6936546
873: if (p_validation_level = FND_API.G_VALID_LEVEL_FULL) then
874: if not FA_ASSET_VAL_PVT.validate_duplicate_dist (
875: p_transaction_type_code => p_trans_rec.transaction_type_code,
876: p_asset_dist_tbl => p_asset_dist_tbl,
877: p_curr_index => p_curr_index ,
878: p_calling_function => 'FA_DISTRIBUTION_PVT.valid_dist_data',