DBA Data[Home] [Help]

APPS.FA_POST_ADJ_ITF_PKG dependencies on FA_SRVR_MSG

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

445:
446: -- clear the debug stack for each asset
447: FA_DEBUG_PKG.initialize;
448: -- reset the message level to prevent bogus errors
449: FA_SRVR_MSG.Set_Message_Level(message_level => 10, p_log_level_rec => g_log_level_rec);
450:
451: l_mesg_name := null;
452: fa_srvr_msg.add_message(
453: calling_fn => NULL,

Line 452: fa_srvr_msg.add_message(

448: -- reset the message level to prevent bogus errors
449: FA_SRVR_MSG.Set_Message_Level(message_level => 10, p_log_level_rec => g_log_level_rec);
450:
451: l_mesg_name := null;
452: fa_srvr_msg.add_message(
453: calling_fn => NULL,
454: name => 'FA_SHARED_ASSET_NUMBER',
455: token1 => 'NUMBER',
456: value1 => l_asset_number(l_loop_count),

Line 858: fa_srvr_msg.add_sql_error(

854: x_failure_count := x_failure_count + 1;
855:
856: write_message(l_asset_number(l_loop_count),
857: 'FA_PADJI_FAIL_TRX');
858: fa_srvr_msg.add_sql_error(
859: calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
860:
861: if (l_debug) then
862: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);

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

882: x_return_status := 0;
883:
884: when fapadj_err then
885: ROLLBACK WORK;
886: fa_srvr_msg.add_message(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
887:
888: -- Dump Debug messages when run in debug mode to log file
889: if (l_debug) then
890: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);

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

893: x_return_status := 2;
894:
895: when others then
896: ROLLBACK WORK;
897: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
898:
899: -- Dump Debug messages when run in debug mode to log file
900: if (l_debug) then
901: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);

Line 937: fa_srvr_msg.add_message

933: FND_FILE.put(FND_FILE.output,l_string);
934: FND_FILE.new_line(FND_FILE.output,1);
935:
936: -- now process the messages for the log file
937: fa_srvr_msg.add_message
938: (calling_fn => l_calling_fn,
939: name => l_message, p_log_level_rec => g_log_level_rec);
940:
941: EXCEPTION