DBA Data[Home] [Help]

APPS.FA_MASSTFR_PKG dependencies on FA_SRVR_MSG

Line 340: FA_SRVR_MSG.Set_Message_Level(message_level => 10);

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

Line 388: fa_srvr_msg.add_message(

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

Line 466: fa_srvr_msg.add_message(

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

Line 483: fa_srvr_msg.add_message(

479: -- if (g_log_level_rec.statement_level) then
480: -- fa_debug_pkg.dump_debug_messages(max_mesgs => 0);
481: -- end if;
482: x_failure_count := x_failure_count + 1;
483: fa_srvr_msg.add_message(
484: calling_fn => l_calling_fn,
485: name => 'FA_TAXUP_ASSET_FAILURE',
486: token1 => 'NUMBER',
487: value1 => l_asset_number(l_count),

Line 499: fa_srvr_msg.add_message(

495: -- if (g_log_level_rec.statement_level) then
496: -- fa_debug_pkg.dump_debug_messages(max_mesgs => 0);
497: -- end if;
498: x_failure_count := x_failure_count + 1;
499: fa_srvr_msg.add_message(
500: calling_fn => l_calling_fn,
501: name => 'FA_TAXUP_ASSET_FAILURE',
502: token1 => 'NUMBER',
503: value1 => l_asset_number(l_count),

Line 532: fa_srvr_msg.add_message(calling_fn => l_calling_fn,

528:
529: when masstfr_err then
530: --dbms_output.put_line('when masstfr_err 2');
531: FND_CONCURRENT.AF_ROLLBACK;
532: fa_srvr_msg.add_message(calling_fn => l_calling_fn,
533: p_log_level_rec => g_log_level_rec);
534:
535: -- Commented for bugfix 4672237
536: -- if (g_log_level_rec.statement_level) then

Line 544: fa_srvr_msg.add_message(calling_fn => l_calling_fn

540:
541: when others then
542: --dbms_output.put_line('when others then');
543: FND_CONCURRENT.AF_ROLLBACK;
544: fa_srvr_msg.add_message(calling_fn => l_calling_fn
545: ,p_log_level_rec => g_log_level_rec);
546: x_return_status := 2;
547:
548: END do_mass_transfer;