DBA Data[Home] [Help]

APPS.FARX_MCR dependencies on FA_DEBUG_PKG

Line 217: FA_DEBUG_PKG.Initialize;

213: BEGIN
214:
215: -- Initialize message stacks.
216: FA_SRVR_MSG.Init_Server_Message;
217: FA_DEBUG_PKG.Initialize;
218:
219: /* Bug 8402286 removing LARGE ROLLBACK SEGMENT
220: -- Set large rollback segment.
221: fnd_profile.get('FA_LARGE_ROLLBACK_SEGMENT', rbs_name);

Line 327: fa_debug_pkg.add('FARX_CR.Review_Change',

323: FETCH get_status INTO h_review_status_d, h_current_status_d;
324: CLOSE get_status;
325:
326: if g_print_debug then
327: fa_debug_pkg.add('FARX_CR.Review_Change',
328: 'After fetching status',
329: '');
330: end if;
331:

Line 350: fa_debug_pkg.add('FARX_CR.Review_Change',

346: Insert review records into the interface table.
347: ===========================================================================*/
348:
349: if g_print_debug then
350: fa_debug_pkg.add('FARX_CR.Review_Change',
351: 'getting cat structure',
352: '');
353: end if;
354:

Line 366: fa_debug_pkg.add('FARX_CR.Review_Change',

362:
363: LOOP
364:
365: if g_print_debug then
366: fa_debug_pkg.add('FARX_CR.Review_Change',
367: 'in loop',
368: '');
369: end if;
370:

Line 563: FA_DEBUG_PKG.Write_Debug_Log;

559: FA_SRVR_MSG.Write_Msg_Log(
560: msg_count => h_msg_count,
561: msg_data => h_msg_data);
562: IF (h_debug_flag = 'YES') THEN
563: FA_DEBUG_PKG.Write_Debug_Log;
564: END IF;
565:
566: errbuf := ''; -- No error.
567: retcode := 0; -- Completed normally.

Line 594: FA_DEBUG_PKG.Write_Debug_Log;

590: FA_SRVR_MSG.Write_Msg_Log(
591: msg_count => h_msg_count,
592: msg_data => h_msg_data);
593: IF (h_debug_flag = 'YES') THEN
594: FA_DEBUG_PKG.Write_Debug_Log;
595: END IF;
596: END IF;
597: WHEN OTHERS THEN
598: retcode := 2; -- Completed with error.

Line 624: FA_DEBUG_PKG.Write_Debug_Log;

620: FA_SRVR_MSG.Write_Msg_Log(
621: msg_count => h_msg_count,
622: msg_data => h_msg_data);
623: IF (h_debug_flag = 'YES') THEN
624: FA_DEBUG_PKG.Write_Debug_Log;
625: END IF;
626: END IF;
627:
628: END Review_Change;