DBA Data[Home] [Help]

APPS.FA_MASS_REINS_PKG dependencies on FA_DEBUG_PKG

Line 148: FA_DEBUG_PKG.Initialize;

144:
145: end if;
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;

Line 171: fa_debug_pkg.add(l_calling_fn, 'fetching assets', '', p_log_level_rec => g_log_level_rec);

167:
168: l_batch_size := nvl(fa_cache_pkg.fa_batch_size, 200);
169:
170: if (g_log_level_rec.statement_level) then
171: fa_debug_pkg.add(l_calling_fn, 'fetching assets', '', p_log_level_rec => g_log_level_rec);
172: end if;
173:
174:
175: OPEN qualified_assets;

Line 186: fa_debug_pkg.add(l_calling_fn, 'no assets to process', '', p_log_level_rec => g_log_level_rec);

182:
183:
184: if (l_asset_id.count = 0) then
185: if (g_log_level_rec.statement_level) then
186: fa_debug_pkg.add(l_calling_fn, 'no assets to process', '', p_log_level_rec => g_log_level_rec);
187: end if;
188: raise done_exc;
189: end if;
190:

Line 196: FA_DEBUG_PKG.Initialize;

192:
193: for l_loop_count in 1..l_asset_id.count loop -- qualified_assets
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(

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

264: x_failure_count := x_failure_count + 1;
265: write_message(l_asset_number(l_loop_count),
266: NULL);
267: if (g_log_level_rec.statement_level) then
268: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
269: end if;
270:
271: WHEN others THEN
272: FND_CONCURRENT.AF_ROLLBACK;

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

273: x_failure_count := x_failure_count + 1;
274: write_message(l_asset_number(l_loop_count),
275: NULL);
276: if (g_log_level_rec.statement_level) then
277: fa_debug_pkg.dump_debug_messages(max_mesgs => 0, p_log_level_rec => g_log_level_rec);
278: end if;
279:
280: END;
281:

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

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;
301:
302: x_return_status := 2;
303:

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

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;
310:
311: x_return_status := 2;
312: