DBA Data[Home] [Help]

APPS.FA_MASS_REVAL_PKG dependencies on FA_SRVR_MSG

Line 293: fa_srvr_msg.add_message

289: end if;
290:
291: -- initial book control validation
292: if (fa_cache_pkg.fazcbc_record.allow_reval_flag <> 'YES') then
293: fa_srvr_msg.add_message
294: (calling_fn => l_calling_fn,
295: name => 'FA_BOOK_REVAL_NOT_ALLOW',
296: p_log_level_rec => g_log_level_rec);
297: raise massrvl_err;

Line 299: fa_srvr_msg.add_message

295: name => 'FA_BOOK_REVAL_NOT_ALLOW',
296: p_log_level_rec => g_log_level_rec);
297: raise massrvl_err;
298: elsif (fa_cache_pkg.fazcbc_record.date_ineffective is not null) then
299: fa_srvr_msg.add_message
300: (calling_fn => l_calling_fn,
301: name => 'FA_DATA_ERR_MASS_REVAL'
302: ,p_log_level_rec => g_log_level_rec);
303: raise massrvl_err;

Line 416: FA_SRVR_MSG.Set_Message_Level(message_level => 10);

412:
413: -- clear the debug stack for each asset
414: FA_DEBUG_PKG.Initialize;
415: -- reset the message level to prevent bogus errors
416: FA_SRVR_MSG.Set_Message_Level(message_level => 10);
417:
418: l_mesg_name := null;
419:
420: BEGIN

Line 527: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn

523: null,
524: p_mode,
525: p_log_level_rec => g_log_level_rec);
526:
527: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn
528: ,p_log_level_rec => g_log_level_rec);
529:
530: END;
531:

Line 567: fa_srvr_msg.add_message(calling_fn => l_calling_fn,

563: x_return_status := 0;
564:
565: when massrvl_err then
566: FND_CONCURRENT.AF_ROLLBACK;
567: fa_srvr_msg.add_message(calling_fn => l_calling_fn,
568: p_log_level_rec => g_log_level_rec);
569: x_return_status := 2;
570:
571: if (p_mode = 'PREVIEW') then

Line 577: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn,

573: end if;
574:
575: when others then
576: FND_CONCURRENT.AF_ROLLBACK;
577: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn,
578: p_log_level_rec => g_log_level_rec);
579: x_return_status := 2;
580:
581: if (p_mode = 'PREVIEW') then

Line 637: fa_srvr_msg.add_message

633:
634: end if;
635:
636: -- now process the messages for the log file
637: fa_srvr_msg.add_message
638: (calling_fn => l_calling_fn,
639: token1 => l_token,
640: value1 => l_value,
641: name => l_message,

Line 804: fa_srvr_msg.add_message

800: G_def_revalue_cip_assets_flag ;
801:
802: if (c_mass_reval_info%NOTFOUND) then
803: close c_mass_reval_info;
804: fa_srvr_msg.add_message
805: (calling_fn => l_calling_fn,
806: name => 'FA_DATA_ERR_MASS_REVAL'
807: ,p_log_level_rec => g_log_level_rec);
808: raise massrvl_err;

Line 832: fa_srvr_msg.add_message (calling_fn => l_calling_fn,

828: return true;
829:
830: EXCEPTION
831: WHEN massrvl_err THEN
832: fa_srvr_msg.add_message (calling_fn => l_calling_fn,
833: p_log_level_rec => g_log_level_rec);
834: return false;
835:
836: WHEN OTHERS THEN

Line 837: fa_srvr_msg.add_sql_error (calling_fn => l_calling_fn,

833: p_log_level_rec => g_log_level_rec);
834: return false;
835:
836: WHEN OTHERS THEN
837: fa_srvr_msg.add_sql_error (calling_fn => l_calling_fn,
838: p_log_level_rec => g_log_level_rec);
839: return false;
840:
841: END get_mass_reval_info;

Line 1029: fa_srvr_msg.add_message (calling_fn => l_calling_fn,

1025:
1026: EXCEPTION
1027: WHEN massrvl_err THEN
1028: FND_CONCURRENT.AF_ROLLBACK;
1029: fa_srvr_msg.add_message (calling_fn => l_calling_fn,
1030: p_log_level_rec => g_log_level_rec);
1031: X_return_status := 2;
1032:
1033: WHEN OTHERS THEN

Line 1035: fa_srvr_msg.add_sql_error (calling_fn => l_calling_fn,

1031: X_return_status := 2;
1032:
1033: WHEN OTHERS THEN
1034: FND_CONCURRENT.AF_ROLLBACK;
1035: fa_srvr_msg.add_sql_error (calling_fn => l_calling_fn,
1036: p_log_level_rec => g_log_level_rec);
1037: x_return_status := 2;
1038:
1039: END allocate_workers;