DBA Data[Home] [Help]

APPS.FA_MASSCHG_PKG dependencies on FA_DEBUG_PKG

Line 630: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);

626: null);
627: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
628:
629: if (g_log_level_rec.statement_level) then
630: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
631: end if;
632:
633: END;
634:

Line 659: FA_DEBUG_PKG.Initialize;

655:
656: for l_loop_count in 1..l_asset_id.count loop
657:
658: -- clear the debug stack for each asset
659: FA_DEBUG_PKG.Initialize;
660: -- reset the message level to prevent bogus errors
661: FA_SRVR_MSG.Set_Message_Level(message_level => 10, p_log_level_rec => g_log_level_rec);
662:
663: l_mesg_name := null;

Line 1015: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);

1011:
1012: write_message(l_asset_number(l_loop_count),
1013: l_mesg_name);
1014: if (g_log_level_rec.statement_level) then
1015: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
1016: end if;
1017:
1018: when others then
1019: FND_CONCURRENT.AF_ROLLBACK;

Line 1028: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);

1024:
1025: fa_srvr_msg.add_sql_error(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
1026:
1027: if (g_log_level_rec.statement_level) then
1028: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
1029: end if;
1030:
1031: END;
1032:

Line 1052: FA_DEBUG_PKG.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);

1048: when masschg_err then
1049: FND_CONCURRENT.AF_ROLLBACK;
1050: fa_srvr_msg.add_message(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
1051: if (g_log_level_rec.statement_level) then
1052: FA_DEBUG_PKG.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
1053: end if;
1054: x_return_status := 2;
1055:
1056: when others then

Line 1060: FA_DEBUG_PKG.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);

1056: when others then
1057: FND_CONCURRENT.AF_ROLLBACK;
1058: fa_srvr_msg.add_message(calling_fn => l_calling_fn, p_log_level_rec => g_log_level_rec);
1059: if (g_log_level_rec.statement_level) then
1060: FA_DEBUG_PKG.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
1061: end if;
1062: x_return_status := 2;
1063:
1064: END do_mass_change;