DBA Data[Home] [Help]

APPS.FA_XADJ_ITF_PKG dependencies on FA_SRVR_MSG

Line 270: FA_SRVR_MSG.Set_Message_Level(message_level => 10, p_log_level_rec => g_log_level_rec);

266:
267: -- clear the debug stack for each asset
268: FA_DEBUG_PKG.initialize;
269: -- reset the message level to prevent bogus errors
270: FA_SRVR_MSG.Set_Message_Level(message_level => 10, p_log_level_rec => g_log_level_rec);
271:
272: l_mesg_name := null;
273: fa_srvr_msg.add_message(
274: calling_fn => NULL,

Line 273: fa_srvr_msg.add_message(

269: -- reset the message level to prevent bogus errors
270: FA_SRVR_MSG.Set_Message_Level(message_level => 10, p_log_level_rec => g_log_level_rec);
271:
272: l_mesg_name := null;
273: fa_srvr_msg.add_message(
274: calling_fn => NULL,
275: name => 'FA_SHARED_ASSET_NUMBER',
276: token1 => 'NUMBER',
277: value1 => l_asset_number(l_loop_count));

Line 430: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);

426: when others then
427: x_failure_count := x_failure_count + 1;
428:
429: write_message(l_asset_number(l_loop_count),'FA_TAXUP_FAIL_TRX');
430: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
431:
432: if (g_log_level_rec.statement_level) then
433: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
434: end if;

Line 524: fa_srvr_msg.add_message(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);

520: end if;
521: end if;
522:
523: ROLLBACK WORK;
524: fa_srvr_msg.add_message(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
525:
526: -- Dump Debug messages when run in debug mode to log file
527: if (g_log_level_rec.statement_level) then
528: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);

Line 550: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);

546: end if;
547: end if;
548:
549: ROLLBACK WORK;
550: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
551:
552: -- Dump Debug messages when run in debug mode to log file
553: if (g_log_level_rec.statement_level) then
554: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);

Line 592: fa_srvr_msg.add_message

588: FND_FILE.put(FND_FILE.output,l_string);
589: FND_FILE.new_line(FND_FILE.output,1);
590:
591: -- now process the messages for the log file
592: fa_srvr_msg.add_message
593: (calling_fn => l_calling_fn,
594: name => l_message, p_log_level_rec => g_log_level_rec);
595:
596: EXCEPTION

Line 652: fa_srvr_msg.add_sql_error(calling_fn => 'FA_XADJ_ITF_PKG.Load_Workers', p_log_level_rec => g_log_level_rec);

648: when error_found then
649: x_return_status := 2;
650:
651: when OTHERS then
652: fa_srvr_msg.add_sql_error(calling_fn => 'FA_XADJ_ITF_PKG.Load_Workers', p_log_level_rec => g_log_level_rec);
653: rollback;
654: if (g_log_level_rec.statement_level) then
655: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
656: end if;