DBA Data[Home] [Help]

APPS.FARX_RP dependencies on FA_DEBUG_PKG

Line 266: FA_DEBUG_PKG.Initialize;

262:
263: -- Initialize message stacks.
264: FA_SRVR_MSG.Init_Server_Message;
265:
266: FA_DEBUG_PKG.Initialize;
267:
268: FA_DEBUG_PKG.SET_DEBUG_FLAG;
269:
270: -- Set debug flag.

Line 268: FA_DEBUG_PKG.SET_DEBUG_FLAG;

264: FA_SRVR_MSG.Init_Server_Message;
265:
266: FA_DEBUG_PKG.Initialize;
267:
268: FA_DEBUG_PKG.SET_DEBUG_FLAG;
269:
270: -- Set debug flag.
271: IF (g_print_debug) THEN
272: h_debug_flag := 'YES';

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

272: h_debug_flag := 'YES';
273: END IF;
274:
275: if (g_print_debug) then
276: fa_debug_pkg.add('FARX_RP.Preview_Reclass',
277: 'Starting Preview',
278: '');
279: end if;
280:

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

403: X_Asset_Id => a_tbl(a_index).asset_id,
404: X_Fully_Rsvd_Flag => mr_rec.fully_rsvd_flag) THEN
405:
406: if (g_print_debug) then
407: fa_debug_pkg.add('FARX_RP.Preview_Reclass',
408: 'Preview - after check_criteria',
409: a_tbl(a_index).asset_id );
410: end if;
411: IF (a_tbl(a_index).category_id = mr_rec.to_category_id) THEN

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

435: -- Increment the number of assets stored in a_tbl.
436: g_asset_count := g_asset_count + 1;
437: ELSE
438: if (g_print_debug) then
439: fa_debug_pkg.add('FARX_RP.Preview_Reclass',
440: 'Preview - validate_reclass_basic skipped asset',
441: a_tbl(a_index).asset_id );
442: end if;
443: -- Basic reclass validation failed. Reclass fails.

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

445: END IF; /* IF FA_REC_PVT_PKG1.Validate_Reclass_Basic */
446: END IF; /* IF (a_tbl(a_index).category_id = */
447: ELSE
448: if (g_print_debug) then
449: fa_debug_pkg.add('FARX_RP.Preview_Reclass',
450: 'Preview - check_criteria skipped asset ',
451: a_tbl(a_index).asset_id );
452: end if;
453: -- Invalid asset record.

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

467: -- and a_index to 0. Commit changes at every 200 assets as well.
468: IF (g_asset_count = h_commit_level) THEN
469: FOR i IN 1 .. a_index LOOP
470: if (g_print_debug) then
471: fa_debug_pkg.add('FARX_RP.Preview_Reclass',
472: 'Preview - inserting asset into itf-table',
473: a_tbl(a_index).asset_id );
474: end if;
475: FA_MASS_REC_UTILS_PKG.Insert_Itf(

Line 582: FA_DEBUG_PKG.Write_Debug_Log;

578: FA_SRVR_MSG.Write_Msg_Log(
579: msg_count => h_msg_count,
580: msg_data => h_msg_data);
581: IF (h_debug_flag = 'YES') THEN
582: FA_DEBUG_PKG.Write_Debug_Log;
583: END IF;
584: END IF;
585: WHEN OTHERS THEN
586: retcode := 2; -- Completed with error.

Line 617: FA_DEBUG_PKG.Write_Debug_Log;

613: FA_SRVR_MSG.Write_Msg_Log(
614: msg_count => h_msg_count,
615: msg_data => h_msg_data);
616: IF (h_debug_flag = 'YES') THEN
617: FA_DEBUG_PKG.Write_Debug_Log;
618: END IF;
619: END IF;
620: END Preview_Reclass;
621: