DBA Data[Home] [Help]

APPS.FA_TAX_UPLOAD_PKG dependencies on FA_SRVR_MSG

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

489:
490: -- clear the debug stack for each asset
491: FA_DEBUG_PKG.Initialize;
492: -- reset the message level to prevent bogus errors
493: FA_SRVR_MSG.Set_Message_Level(message_level => 10, p_log_level_rec => g_log_level_rec);
494:
495: l_mesg_name := null;
496: fa_srvr_msg.add_message(
497: calling_fn => NULL,

Line 496: fa_srvr_msg.add_message(

492: -- reset the message level to prevent bogus errors
493: FA_SRVR_MSG.Set_Message_Level(message_level => 10, p_log_level_rec => g_log_level_rec);
494:
495: l_mesg_name := null;
496: fa_srvr_msg.add_message(
497: calling_fn => NULL,
498: name => 'FA_SHARED_ASSET_NUMBER',
499: token1 => 'NUMBER',
500: value1 => l_asset_number(l_loop_count),

Line 1022: fa_srvr_msg.add_sql_error(

1018: x_failure_count := x_failure_count + 1;
1019:
1020: write_message(l_asset_number(l_loop_count),
1021: 'FA_TAXUP_FAIL_TRX');
1022: fa_srvr_msg.add_sql_error(
1023: calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
1024:
1025: if (l_debug) then
1026: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);

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

1050: x_return_status := 0;
1051:
1052: when faxtaxup_err then
1053: FND_CONCURRENT.AF_ROLLBACK;
1054: fa_srvr_msg.add_message(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
1055:
1056: -- Dump Debug messages when run in debug mode to log file
1057: if (l_debug) then
1058: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);

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

1061: x_return_status := 2;
1062:
1063: when others then
1064: FND_CONCURRENT.AF_ROLLBACK;
1065: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
1066:
1067: -- Dump Debug messages when run in debug mode to log file
1068: if (l_debug) then
1069: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);

Line 1101: fa_srvr_msg.add_message

1097:
1098:
1099:
1100: -- now process the messages for the log file
1101: fa_srvr_msg.add_message
1102: (calling_fn => l_calling_fn,
1103: name => l_message, p_log_level_rec => g_log_level_rec);
1104:
1105: EXCEPTION

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

1258:
1259: EXCEPTION
1260: WHEN taxup_err THEN
1261: FND_CONCURRENT.AF_ROLLBACK;
1262: fa_srvr_msg.add_message (calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
1263: X_return_status := 2;
1264:
1265: WHEN OTHERS THEN
1266: FND_CONCURRENT.AF_ROLLBACK;

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

1263: X_return_status := 2;
1264:
1265: WHEN OTHERS THEN
1266: FND_CONCURRENT.AF_ROLLBACK;
1267: fa_srvr_msg.add_sql_error (calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
1268: x_return_status := 2;
1269:
1270: END allocate_workers;
1271: