DBA Data[Home] [Help]

APPS.FARX_RP dependencies on FA_DEBUG_PKG

Line 274: FA_DEBUG_PKG.Initialize;

270:
271: -- Initialize message stacks.
272: FA_SRVR_MSG.Init_Server_Message;
273:
274: FA_DEBUG_PKG.Initialize;
275:
276: FA_DEBUG_PKG.SET_DEBUG_FLAG;
277:
278: -- Set debug flag.

Line 276: FA_DEBUG_PKG.SET_DEBUG_FLAG;

272: FA_SRVR_MSG.Init_Server_Message;
273:
274: FA_DEBUG_PKG.Initialize;
275:
276: FA_DEBUG_PKG.SET_DEBUG_FLAG;
277:
278: -- Set debug flag.
279: IF (g_print_debug) THEN
280: h_debug_flag := 'YES';

Line 284: fa_debug_pkg.add('FARX_RP.Preview_Reclass',

280: h_debug_flag := 'YES';
281: END IF;
282:
283: if (g_print_debug) then
284: fa_debug_pkg.add('FARX_RP.Preview_Reclass',
285: 'Starting Preview',
286: '');
287: end if;
288: /* Fix for BUG# 1302611 where rbs_name was being intepreted as a literal

Line 427: fa_debug_pkg.add('FARX_RP.Preview_Reclass',

423: X_Asset_Id => a_tbl(a_index).asset_id,
424: X_Fully_Rsvd_Flag => mr_rec.fully_rsvd_flag) THEN
425:
426: if (g_print_debug) then
427: fa_debug_pkg.add('FARX_RP.Preview_Reclass',
428: 'Preview - after check_criteria',
429: a_tbl(a_index).asset_id );
430: end if;
431: IF (a_tbl(a_index).category_id = mr_rec.to_category_id) THEN

Line 460: fa_debug_pkg.add('FARX_RP.Preview_Reclass',

456: -- Increment the number of assets stored in a_tbl.
457: g_asset_count := g_asset_count + 1;
458: ELSE
459: if (g_print_debug) then
460: fa_debug_pkg.add('FARX_RP.Preview_Reclass',
461: 'Preview - validate_reclass_basic skipped asset',
462: a_tbl(a_index).asset_id );
463: end if;
464: -- Basic reclass validation failed. Reclass fails.

Line 470: fa_debug_pkg.add('FARX_RP.Preview_Reclass',

466: END IF; /* IF FA_REC_PVT_PKG1.Validate_Reclass_Basic */
467: END IF; /* IF (a_tbl(a_index).category_id = */
468: ELSE
469: if (g_print_debug) then
470: fa_debug_pkg.add('FARX_RP.Preview_Reclass',
471: 'Preview - check_criteria skipped asset ',
472: a_tbl(a_index).asset_id );
473: end if;
474: -- Invalid asset record.

Line 492: fa_debug_pkg.add('FARX_RP.Preview_Reclass',

488: -- and a_index to 0. Commit changes at every 200 assets as well.
489: IF (g_asset_count = h_commit_level) THEN
490: FOR i IN 1 .. a_index LOOP
491: if (g_print_debug) then
492: fa_debug_pkg.add('FARX_RP.Preview_Reclass',
493: 'Preview - inserting asset into itf-table',
494: a_tbl(a_index).asset_id );
495: end if;
496: FA_MASS_REC_UTILS_PKG.Insert_Itf(

Line 605: FA_DEBUG_PKG.Write_Debug_Log;

601: FA_SRVR_MSG.Write_Msg_Log(
602: msg_count => h_msg_count,
603: msg_data => h_msg_data);
604: IF (h_debug_flag = 'YES') THEN
605: FA_DEBUG_PKG.Write_Debug_Log;
606: END IF;
607: END IF;
608: WHEN OTHERS THEN
609: retcode := 2; -- Completed with error.

Line 640: FA_DEBUG_PKG.Write_Debug_Log;

636: FA_SRVR_MSG.Write_Msg_Log(
637: msg_count => h_msg_count,
638: msg_data => h_msg_data);
639: IF (h_debug_flag = 'YES') THEN
640: FA_DEBUG_PKG.Write_Debug_Log;
641: END IF;
642: END IF;
643: END Preview_Reclass;
644: