DBA Data[Home] [Help]

APPS.PA_CLIENT_EXTN_BUDGET dependencies on PA_DEBUG

Line 367: /* Use the below variable to check if the PA debug mode is ON before printing

363: , x_msg_data OUT NOCOPY VARCHAR2 --File.Sql.39 bug 4440895
364: )
365:
366: IS
367: /* Use the below variable to check if the PA debug mode is ON before printing
368: the debug messages. */
369:
370: L_PA_DEBUG_MODE varchar2(1) := NVL(FND_PROFILE.value('PA_DEBUG_MODE'), 'N');
371:

Line 370: L_PA_DEBUG_MODE varchar2(1) := NVL(FND_PROFILE.value('PA_DEBUG_MODE'), 'N');

366: IS
367: /* Use the below variable to check if the PA debug mode is ON before printing
368: the debug messages. */
369:
370: L_PA_DEBUG_MODE varchar2(1) := NVL(FND_PROFILE.value('PA_DEBUG_MODE'), 'N');
371:
372: /* Define any other local variables, here. */
373:
374: BEGIN

Line 379: pa_debug.set_err_stack('PA_CLIENT_EXTN_BUDGET.Get_Custom_Layout_Code');

375:
376: /* Initialize out parameters. */
377: x_msg_count := 0;
378: x_return_status := FND_API.G_RET_STS_SUCCESS;
379: pa_debug.set_err_stack('PA_CLIENT_EXTN_BUDGET.Get_Custom_Layout_Code');
380:
381: /* Display Errors:
382: To display an error or warning message use PA_UTILS.Add_Message.
383: For example, a typical call might look like the following:

Line 399: -- IF l_pa_debug_mode = 'Y' THEN

395:
396: /* To print debug messages, the following statements can be modified and
397: used.
398:
399: -- IF l_pa_debug_mode = 'Y' THEN
400: -- pa_debug.g_err_stage:= 'The Layout is invalid.';
401: -- pa_debug.write(g_module_name,pa_debug.g_err_stage,PA_FP_CONSTANTS_PKG.G_DEBUG_LEVEL3);
402: -- END IF;
403:

Line 400: -- pa_debug.g_err_stage:= 'The Layout is invalid.';

396: /* To print debug messages, the following statements can be modified and
397: used.
398:
399: -- IF l_pa_debug_mode = 'Y' THEN
400: -- pa_debug.g_err_stage:= 'The Layout is invalid.';
401: -- pa_debug.write(g_module_name,pa_debug.g_err_stage,PA_FP_CONSTANTS_PKG.G_DEBUG_LEVEL3);
402: -- END IF;
403:
404: */

Line 401: -- pa_debug.write(g_module_name,pa_debug.g_err_stage,PA_FP_CONSTANTS_PKG.G_DEBUG_LEVEL3);

397: used.
398:
399: -- IF l_pa_debug_mode = 'Y' THEN
400: -- pa_debug.g_err_stage:= 'The Layout is invalid.';
401: -- pa_debug.write(g_module_name,pa_debug.g_err_stage,PA_FP_CONSTANTS_PKG.G_DEBUG_LEVEL3);
402: -- END IF;
403:
404: */
405:

Line 415: pa_debug.reset_err_stack;

411:
412: x_layout_code_out := p_layout_code_in;
413:
414: /* Reset the error stack. */
415: pa_debug.reset_err_stack;
416:
417:
418: EXCEPTION
419: WHEN OTHERS THEN

Line 430: -- IF l_pa_debug_mode = 'Y' THEN

426: -- FND_MSG_PUB.add_exc_msg
427: -- ( p_pkg_name => 'PA_CLIENT_EXTN_BUDGET'
428: -- ,p_procedure_name => 'Get_Custom_Layout_Code'
429: -- ,p_error_text => sqlerrm);
430: -- IF l_pa_debug_mode = 'Y' THEN
431: -- pa_debug.g_err_stage:= 'Unexpected Error'||SQLERRM;
432: -- pa_debug.write(g_module_name,pa_debug.g_err_stage,PA_FP_CONSTANTS_PKG.G_DEBUG_LEVEL5);
433: -- END IF;
434: -- pa_debug.reset_err_stack;

Line 431: -- pa_debug.g_err_stage:= 'Unexpected Error'||SQLERRM;

427: -- ( p_pkg_name => 'PA_CLIENT_EXTN_BUDGET'
428: -- ,p_procedure_name => 'Get_Custom_Layout_Code'
429: -- ,p_error_text => sqlerrm);
430: -- IF l_pa_debug_mode = 'Y' THEN
431: -- pa_debug.g_err_stage:= 'Unexpected Error'||SQLERRM;
432: -- pa_debug.write(g_module_name,pa_debug.g_err_stage,PA_FP_CONSTANTS_PKG.G_DEBUG_LEVEL5);
433: -- END IF;
434: -- pa_debug.reset_err_stack;
435: -- RAISE;

Line 432: -- pa_debug.write(g_module_name,pa_debug.g_err_stage,PA_FP_CONSTANTS_PKG.G_DEBUG_LEVEL5);

428: -- ,p_procedure_name => 'Get_Custom_Layout_Code'
429: -- ,p_error_text => sqlerrm);
430: -- IF l_pa_debug_mode = 'Y' THEN
431: -- pa_debug.g_err_stage:= 'Unexpected Error'||SQLERRM;
432: -- pa_debug.write(g_module_name,pa_debug.g_err_stage,PA_FP_CONSTANTS_PKG.G_DEBUG_LEVEL5);
433: -- END IF;
434: -- pa_debug.reset_err_stack;
435: -- RAISE;
436: END Get_Custom_Layout_Code;

Line 434: -- pa_debug.reset_err_stack;

430: -- IF l_pa_debug_mode = 'Y' THEN
431: -- pa_debug.g_err_stage:= 'Unexpected Error'||SQLERRM;
432: -- pa_debug.write(g_module_name,pa_debug.g_err_stage,PA_FP_CONSTANTS_PKG.G_DEBUG_LEVEL5);
433: -- END IF;
434: -- pa_debug.reset_err_stack;
435: -- RAISE;
436: END Get_Custom_Layout_Code;
437:
438: -- created tpalaniv For bug 3736220