DBA Data[Home] [Help]

APPS.PA_FUNDS_CONTROL_UTILS dependencies on PA_DEBUG

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

1: package body PA_FUNDS_CONTROL_UTILS as
2: -- $Header: PAFCUTLB.pls 120.27.12020000.3 2013/03/06 09:30:42 admarath ship $
3:
4: P_DEBUG_MODE varchar2(1) := NVL(FND_PROFILE.value('PA_DEBUG_MODE'), 'N');
5:
6: G_PROJ_ID NUMBER;
7: G_FC_ENABLED VARCHAR2(1);
8:

Line 30: pa_debug.g_err_stage := substr(p_message,1,250);

26: BEGIN
27: IF P_DEBUG_MODE = 'Y' then
28:
29: IF p_message is NOT NULL then
30: pa_debug.g_err_stage := substr(p_message,1,250);
31: pa_debug.write_file('LOG: '||pa_debug.g_err_stage);
32: pa_debug.write('pa.plsql.PA_FUNDS_CONTROL_UTILS','LOG: '||pa_debug.g_err_stage,3);
33: END IF;
34: END IF;

Line 31: pa_debug.write_file('LOG: '||pa_debug.g_err_stage);

27: IF P_DEBUG_MODE = 'Y' then
28:
29: IF p_message is NOT NULL then
30: pa_debug.g_err_stage := substr(p_message,1,250);
31: pa_debug.write_file('LOG: '||pa_debug.g_err_stage);
32: pa_debug.write('pa.plsql.PA_FUNDS_CONTROL_UTILS','LOG: '||pa_debug.g_err_stage,3);
33: END IF;
34: END IF;
35:

Line 32: pa_debug.write('pa.plsql.PA_FUNDS_CONTROL_UTILS','LOG: '||pa_debug.g_err_stage,3);

28:
29: IF p_message is NOT NULL then
30: pa_debug.g_err_stage := substr(p_message,1,250);
31: pa_debug.write_file('LOG: '||pa_debug.g_err_stage);
32: pa_debug.write('pa.plsql.PA_FUNDS_CONTROL_UTILS','LOG: '||pa_debug.g_err_stage,3);
33: END IF;
34: END IF;
35:
36: END LOG_MESSAGE;

Line 515: PA_DEBUG.init_err_stack('PA_FUNDS_CHECK_UTILS.get_closed_periods');

511:
512:
513: BEGIN
514: -- Initialize the error statck
515: PA_DEBUG.init_err_stack('PA_FUNDS_CHECK_UTILS.get_closed_periods');
516:
517: -- set the return status to success
518: x_return_status := FND_API.G_RET_STS_SUCCESS;
519:

Line 545: PA_DEBUG.reset_err_stack;

541: --Else
542: --x_tab_count := l_count_rows;
543: --End if;
544: -- reset the error stack
545: PA_DEBUG.reset_err_stack;
546:
547:
548: EXCEPTION
549: when others then