DBA Data[Home] [Help]

APPS.FA_TRANSFER_PUB dependencies on FA_ASSET_VAL_PVT

Line 102: if not fa_asset_val_pvt.validate_asset_book

98: RAISE FND_API.G_EXC_ERROR;
99: end if;
100:
101: -- validate book is corporate and enabled and asset exists in book
102: if not fa_asset_val_pvt.validate_asset_book
103: (p_transaction_type_code => 'TRANSFER',
104: p_book_type_code => px_asset_hdr_rec.book_type_code,
105: p_asset_id => px_asset_hdr_rec.asset_id,
106: p_calling_fn => 'FA_TRANSFER_PUB.do_transfer', p_log_level_rec => g_log_level_rec) then

Line 111: if not FA_ASSET_VAL_PVT.validate_impairment_exists

107: raise FND_API.G_EXC_ERROR;
108: end if;
109:
110: --Verify if impairment has happened in same period
111: if not FA_ASSET_VAL_PVT.validate_impairment_exists
112: (p_asset_id => px_asset_hdr_rec.asset_id,
113: p_book => px_asset_hdr_rec.book_type_code,
114: p_mrc_sob_type_code => 'P',
115: p_set_of_books_id => px_asset_hdr_rec.set_of_books_id,

Line 143: if not FA_ASSET_VAL_PVT.check_overlapping_impairment(

139: end if;
140:
141: --End code for the 10328635
142:
143: if not FA_ASSET_VAL_PVT.check_overlapping_impairment(
144: p_trans_rec => px_trans_rec,
145: p_asset_hdr_rec => px_asset_hdr_rec ,
146: p_log_level_rec => g_log_level_rec) then
147:

Line 150: calling_fn => 'FA_ASSET_VAL_PVT.check_overlapping_impairment'

146: p_log_level_rec => g_log_level_rec) then
147:
148: fa_srvr_msg.add_message
149: (name => 'FA_OVERLAPPING_IMP_NOT_ALLOWED',
150: calling_fn => 'FA_ASSET_VAL_PVT.check_overlapping_impairment'
151: ,p_log_level_rec => g_log_level_rec);
152:
153: raise FND_API.G_EXC_ERROR;
154: end if;

Line 165: if not fa_asset_val_pvt.validate_period_of_addition

161: X_init_message_flag=> 'NO', p_log_level_rec => g_log_level_rec) then
162: raise FND_API.G_EXC_ERROR;
163: end if;
164:
165: if not fa_asset_val_pvt.validate_period_of_addition
166: (px_asset_hdr_rec.asset_id,
167: px_asset_hdr_rec.book_type_code,
168: 'ABSOLUTE',
169: l_period_addition, p_log_level_rec => g_log_level_rec) then

Line 319: if FA_ASSET_VAL_PVT.validate_fully_retired(p_asset_hdr_rec.asset_id,

315: end if;
316: end if;
317:
318: -- check if asset is fully retired
319: if FA_ASSET_VAL_PVT.validate_fully_retired(p_asset_hdr_rec.asset_id,
320: p_asset_hdr_rec.book_type_code, p_log_level_rec => p_log_level_rec) then
321: fa_srvr_msg.add_message(
322: calling_fn => 'FA_TRANSFER_PUB.valid_input',
323: Name => 'FA_REC_RETIRED', p_log_level_rec => p_log_level_rec);

Line 334: if not fa_asset_val_pvt.validate_asset_transfer_date

330: return FALSE;
331: end if;
332:
333: /*Bug 8601485 - Verify if transfer date of the asset is before DPIS*/
334: if not fa_asset_val_pvt.validate_asset_transfer_date
335: (p_asset_hdr_rec => p_asset_hdr_rec,
336: p_trans_rec => px_trans_rec,
337: p_calling_fn => 'FA_TRANSFER_PUB.do_transfer',
338: p_log_level_rec => NULL) then