DBA Data[Home] [Help]

APPS.PA_FUNDS_CONTROL_UTILS2 dependencies on PA_DEBUG

Line 10: pa_debug.write_file('LOG',p_msg);

6:
7: BEGIN
8: If p_debug_flag = 'Y' Then
9: --r_debug.r_msg('Log:'||p_msg);
10: pa_debug.write_file('LOG',p_msg);
11: End If;
12:
13: END PRINT_MSG;
14:

Line 32: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);

28: from pa_implementations_all imp
29: where imp.org_id = nvl(p_proj_org_id,-99) ; /*5368274*/
30:
31: BEGIN
32: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
33: l_debug_mode := NVL(l_debug_mode, 'N');
34:
35: l_debug_stage := 'Inside is_CWK_PO';
36: print_msg(l_debug_mode,l_debug_stage);

Line 198: PA_DEBUG.set_curr_function('PA_FUNDS_CONTROL_UTILS2.get_CWK_RLMI');

194: l_debug_mode varchar2(100) := 'N';
195:
196: BEGIN
197: --Initialize the error stack
198: PA_DEBUG.set_curr_function('PA_FUNDS_CONTROL_UTILS2.get_CWK_RLMI');
199:
200: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
201: l_debug_mode := NVL(l_debug_mode, 'N');
202:

Line 200: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);

196: BEGIN
197: --Initialize the error stack
198: PA_DEBUG.set_curr_function('PA_FUNDS_CONTROL_UTILS2.get_CWK_RLMI');
199:
200: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
201: l_debug_mode := NVL(l_debug_mode, 'N');
202:
203: PA_DEBUG.SET_PROCESS( x_process => 'PLSQL'
204: ,x_write_file => 'LOG'

Line 203: PA_DEBUG.SET_PROCESS( x_process => 'PLSQL'

199:
200: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
201: l_debug_mode := NVL(l_debug_mode, 'N');
202:
203: PA_DEBUG.SET_PROCESS( x_process => 'PLSQL'
204: ,x_write_file => 'LOG'
205: ,x_debug_mode => l_debug_mode
206: );
207:

Line 231: pa_debug.reset_curr_function; /* 4129612 */

227: CLOSE cur_com_cwk_rlmi;
228:
229: END IF;
230:
231: pa_debug.reset_curr_function; /* 4129612 */
232: Return l_cwk_rlmi;
233:
234: EXCEPTION
235: WHEN OTHERS THEN

Line 237: pa_debug.reset_err_stack;

233:
234: EXCEPTION
235: WHEN OTHERS THEN
236: print_msg(l_debug_mode,l_debug_stage);
237: pa_debug.reset_err_stack;
238: RAISE;
239: END get_CWK_RLMI;
240:
241: /* This Function returns the Baseline Budget version OR Draft budget version

Line 377: PA_DEBUG.set_curr_function('PA_FUNDS_CONTROL_UTILS2.checkCWKbdCostCodes');

373: AND NVL(pt.burden_amt_display_method,'N') = 'D';
374:
375: BEGIN
376:
377: PA_DEBUG.set_curr_function('PA_FUNDS_CONTROL_UTILS2.checkCWKbdCostCodes');
378:
379: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
380: l_debug_mode := NVL(l_debug_mode, 'N');
381:

Line 379: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);

375: BEGIN
376:
377: PA_DEBUG.set_curr_function('PA_FUNDS_CONTROL_UTILS2.checkCWKbdCostCodes');
378:
379: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
380: l_debug_mode := NVL(l_debug_mode, 'N');
381:
382: PA_DEBUG.SET_PROCESS( x_process => 'PLSQL'
383: ,x_write_file => 'LOG'

Line 382: PA_DEBUG.SET_PROCESS( x_process => 'PLSQL'

378:
379: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
380: l_debug_mode := NVL(l_debug_mode, 'N');
381:
382: PA_DEBUG.SET_PROCESS( x_process => 'PLSQL'
383: ,x_write_file => 'LOG'
384: ,x_debug_mode => l_debug_mode
385: );
386:

Line 527: pa_debug.reset_err_stack;

523: x_result_code := l_result_code;
524:
525:
526: --Reset Error stack;
527: pa_debug.reset_err_stack;
528:
529:
530: EXCEPTION
531:

Line 536: pa_debug.reset_err_stack;

532: when l_no_costplus_structure Then
533: x_return_status := 'E';
534: x_status_code := 'T';
535: x_result_code := 'F100';
536: pa_debug.reset_err_stack;
537: RAISE;
538:
539: when others then
540: x_return_status := 'U';

Line 546: pa_debug.reset_err_stack;

542: x_result_code := 'F100';
543: pa_funds_control_utils2.g_bd_cache_status_code := NULL;
544: pa_funds_control_utils2.g_bd_cache_result_code := NULL;
545: pa_funds_control_utils2.g_bd_cache_exp_string := NULL;
546: pa_debug.reset_err_stack;
547: RAISE;
548:
549: END checkCWKbdCostCodes;
550: