DBA Data[Home] [Help]

APPS.FA_UNPLANNED_PUB dependencies on FA_ASSET_VAL_PVT

Line 94: if not (FA_ASSET_VAL_PVT.validate_asset_book

90: end if;
91:
92: px_asset_hdr_rec.set_of_books_id := fa_cache_pkg.fazcbc_record.set_of_books_id;
93:
94: if not (FA_ASSET_VAL_PVT.validate_asset_book
95: (p_transaction_type_code => 'ADJUSTMENT',
96: p_book_type_code => px_asset_hdr_rec.book_type_code,
97: p_asset_id => px_asset_hdr_rec.asset_id,
98: p_calling_fn => l_calling_fn,

Line 140: if not FA_ASSET_VAL_PVT.validate_fa_lookup_code

136:
137:
138: -- verify that the amortized type is populated and valid
139: if (p_unplanned_deprn_rec.unplanned_type is not null) then
140: if not FA_ASSET_VAL_PVT.validate_fa_lookup_code
141: (p_lookup_type => 'UNPLANNED DEPRN',
142: p_lookup_code => p_unplanned_deprn_rec.unplanned_type,
143: p_log_level_rec => g_log_level_rec) then
144: raise unp_err;

Line 231: if not FA_ASSET_VAL_PVT.validate_exp_after_amort

227:
228:
229: -- check for prior amortizations/retirements
230: if (px_trans_rec.transaction_subtype <> 'AMORTIZED') then
231: if not FA_ASSET_VAL_PVT.validate_exp_after_amort
232: (p_asset_id => px_asset_hdr_rec.asset_id,
233: p_book => px_asset_hdr_rec.book_type_code,
234: p_log_level_rec => g_log_level_rec) then
235: raise unp_err;

Line 247: if FA_ASSET_VAL_PVT.validate_fully_retired

243: raise unp_err;
244: end if;
245: end if;
246:
247: if FA_ASSET_VAL_PVT.validate_fully_retired
248: (p_asset_id => px_asset_hdr_rec.asset_id,
249: p_book => px_asset_hdr_rec.book_type_code,
250: p_log_level_rec => g_log_level_rec) then
251: fa_srvr_msg.add_message

Line 422: if not FA_ASSET_VAL_PVT.validate_period_of_addition

418:
419: -- Bug # 4882700
420: -- value for parameter "p_mode" is changed to ABSOLUTE from CAPITALIZED.
421: -- check period of addition
422: if not FA_ASSET_VAL_PVT.validate_period_of_addition
423: (p_asset_id => px_asset_hdr_rec.asset_id,
424: p_book => px_asset_hdr_rec.book_type_code,
425: p_mode => 'ABSOLUTE',
426: px_period_of_addition => px_asset_hdr_rec.period_of_addition,

Line 439: if not FA_ASSET_VAL_PVT.validate_exp_after_amort

435:
436:
437: if (px_trans_rec.transaction_subtype = 'EXPENSED') then
438:
439: if not FA_ASSET_VAL_PVT.validate_exp_after_amort
440: (p_asset_id => px_asset_hdr_rec.asset_id,
441: p_book => px_asset_hdr_rec.book_type_code,
442: p_log_level_rec => p_log_level_rec) then
443: raise unp_err;

Line 476: if FA_ASSET_VAL_PVT.validate_fully_retired

472:
473: px_trans_rec.amortization_start_date :=
474: to_date(to_char(px_trans_rec.amortization_start_date,'DD/MM/YYYY'),'DD/MM/YYYY');
475:
476: if FA_ASSET_VAL_PVT.validate_fully_retired
477: (p_asset_id => px_asset_hdr_rec.asset_id,
478: p_book => px_asset_hdr_rec.book_type_code,
479: p_log_level_rec => p_log_level_rec) then
480: fa_srvr_msg.add_message

Line 792: if not FA_ASSET_VAL_PVT.validate_period_of_addition

788: from dual;
789:
790: -- check period of addition for the group
791:
792: if not FA_ASSET_VAL_PVT.validate_period_of_addition
793: (p_asset_id => l_grp_asset_hdr_rec.asset_id,
794: p_book => l_grp_asset_hdr_rec.book_type_code,
795: p_mode => 'ABSOLUTE',
796: px_period_of_addition => l_grp_asset_hdr_rec.period_of_addition,

Line 870: if FA_ASSET_VAL_PVT.validate_fully_retired

866: l_grp_trans_rec.transaction_key := 'UE';
867: end if;
868: */
869:
870: if FA_ASSET_VAL_PVT.validate_fully_retired
871: (p_asset_id => l_grp_asset_hdr_rec.asset_id,
872: p_book => l_grp_asset_hdr_rec.book_type_code,
873: p_log_level_rec => p_log_level_rec) then
874: fa_srvr_msg.add_message

Line 915: if not FA_ASSET_VAL_PVT.validate_disabled_flag

911:
912: --HH validate disabled_flag
913: --Doing this just as a precaustion in case the api get called directly.
914: --The form, if used, won't allow the trx as the button is not shown.
915: if not FA_ASSET_VAL_PVT.validate_disabled_flag
916: (p_group_asset_id => l_grp_asset_hdr_rec.asset_id,
917: p_book_type_code => l_grp_asset_hdr_rec.book_type_code,
918: p_old_flag => l_grp_asset_fin_rec.disabled_flag,
919: p_new_flag => l_grp_asset_fin_rec.disabled_flag,