DBA Data[Home] [Help]

APPS.FA_MASS_REINS_PKG dependencies on FA_SRVR_MSG

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

146:
147: -- clear the debug stack for each asset
148: FA_DEBUG_PKG.Initialize;
149: -- reset the message level to prevent bogus errors
150: FA_SRVR_MSG.Set_Message_Level(message_level => 10, p_log_level_rec => g_log_level_rec);
151:
152: OPEN mass_reinstatement;
153: FETCH mass_reinstatement
154: INTO l_Mass_Retirement_Id,

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

194:
195: -- clear the debug stack for each asset
196: FA_DEBUG_PKG.Initialize;
197: -- reset the message level to prevent bogus errors
198: FA_SRVR_MSG.Set_Message_Level(message_level => 10, p_log_level_rec => g_log_level_rec);
199:
200: fa_srvr_msg.add_message(
201: calling_fn => NULL,
202: name => 'FA_SHARED_ASSET_NUMBER',

Line 200: fa_srvr_msg.add_message(

196: FA_DEBUG_PKG.Initialize;
197: -- reset the message level to prevent bogus errors
198: FA_SRVR_MSG.Set_Message_Level(message_level => 10, p_log_level_rec => g_log_level_rec);
199:
200: fa_srvr_msg.add_message(
201: calling_fn => NULL,
202: name => 'FA_SHARED_ASSET_NUMBER',
203: token1 => 'NUMBER',
204: value1 => l_asset_number(l_loop_count),

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

292: WHEN done_exc then
293: x_return_status := 0;
294:
295: WHEN error_found THEN
296: fa_srvr_msg.add_message(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
297: FND_CONCURRENT.AF_ROLLBACK;
298: if (g_log_level_rec.statement_level) then
299: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
300: end if;

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

301:
302: x_return_status := 2;
303:
304: WHEN Others THEN
305: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
306: FND_CONCURRENT.AF_ROLLBACK;
307: if (g_log_level_rec.statement_level) then
308: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
309: end if;

Line 346: fa_srvr_msg.add_message

342: FND_FILE.put(FND_FILE.output,l_string);
343: FND_FILE.new_line(FND_FILE.output,1);
344:
345: -- now process the messages for the log file
346: fa_srvr_msg.add_message
347: (calling_fn => l_calling_fn,
348: name => l_message, p_log_level_rec => g_log_level_rec);
349:
350: EXCEPTION