DBA Data[Home] [Help]

APPS.FA_MASSTFR_PKG dependencies on FA_SRVR_MSG

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

334:
335: -- clear the debug stack for each asset
336: FA_DEBUG_PKG.Initialize;
337: -- reset the message level to prevent bogus errors
338: FA_SRVR_MSG.Set_Message_Level(message_level => 10, p_log_level_rec => g_log_level_rec);
339:
340: BEGIN
341:
342: -- if partial segments were entered for destination

Line 386: fa_srvr_msg.add_message(

382: and nvl(s.actual_termination_date,l_trans_date) >= l_trans_date
383: and p.person_id = l_assigned_to(l_count);
384: if (l_rowcount = 0) then
385: l_to_emp_id := NULL; -- null out invalid employees
386: fa_srvr_msg.add_message(
387: calling_fn => NULL,
388: name => 'FA_INVALID_ASSIGNED_TO',
389: token1 => 'ASSET_NUMBER',
390: value1 => l_asset_number(l_count),

Line 464: fa_srvr_msg.add_message(

460: end if;
461:
462: --dbms_output.put_line('after fa_transfer_pub');
463: x_success_count := x_success_count + 1;
464: fa_srvr_msg.add_message(
465: calling_fn => NULL,
466: name => 'FA_TAXUP_ASSET_SUCCESS',
467: token1 => 'NUMBER',
468: value1 => l_asset_number(l_count),

Line 479: fa_srvr_msg.add_message(

475: if (g_log_level_rec.statement_level) then
476: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
477: end if;
478: x_failure_count := x_failure_count + 1;
479: fa_srvr_msg.add_message(
480: calling_fn => l_calling_fn,
481: name => 'FA_TAXUP_ASSET_FAILURE',
482: token1 => 'NUMBER',
483: value1 => l_asset_number(l_count),

Line 493: fa_srvr_msg.add_message(

489: if (g_log_level_rec.statement_level) then
490: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
491: end if;
492: x_failure_count := x_failure_count + 1;
493: fa_srvr_msg.add_message(
494: calling_fn => l_calling_fn,
495: name => 'FA_TAXUP_ASSET_FAILURE',
496: token1 => 'NUMBER',
497: value1 => l_asset_number(l_count),

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

522:
523: when masstfr_err then
524: --dbms_output.put_line('when masstfr_err 2');
525: FND_CONCURRENT.AF_ROLLBACK;
526: fa_srvr_msg.add_message(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
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);
529: end if;
530: x_return_status := 2;

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

531:
532: when others then
533: --dbms_output.put_line('when others then');
534: FND_CONCURRENT.AF_ROLLBACK;
535: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
536: x_return_status := 2;
537:
538: END do_mass_transfer;
539: