DBA Data[Home] [Help]

APPS.PA_PRJ_PERIOD_PROFILE_UTILS dependencies on FND_PROFILE

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

1: PACKAGE BODY Pa_Prj_Period_Profile_Utils as
2: /* $Header: PAPJPDPB.pls 120.1.12010000.8 2009/05/21 12:15:37 vgovvala ship $ */
3:
4: P_PA_DEBUG_MODE varchar2(1) := NVL(FND_PROFILE.value('PA_DEBUG_MODE'), 'N');
5: g_module_name VARCHAR2(100) := 'pa.plsql.pa_prj_period_profile_utils';
6:
7: Procedure Maintain_Prj_Period_Profile(
8: p_project_id IN NUMBER,

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

1508: END IF;
1509:
1510: IF p_refresh_option_code <> 'NONE' THEN
1511: /* calling the concurrent program */
1512: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
1513:
1514: IF l_call_profile_gl_flag = 'Y' THEN
1515: l_conc_gl_profile_id := px_gl_period_profile_id;
1516: ELSE

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

2093: x_msg_count := 0;
2094: x_return_status := FND_API.G_RET_STS_SUCCESS;
2095:
2096: pa_debug.set_err_stack('Get_Curr_Period_Profile_Info');
2097: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
2098: l_debug_mode := NVL(l_debug_mode, 'Y');
2099: IF P_PA_DEBUG_MODE = 'Y' THEN
2100: pa_debug.set_process('Get_Curr_Period_Profile_Info: ' || 'PLSQL','LOG',l_debug_mode);
2101: END IF;

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

2272: IF P_PA_DEBUG_MODE = 'Y' THEN
2273: pa_debug.init_err_stack('PA_PLAN_MATRIX.GET_AMTTYPE_ID');
2274: END IF;
2275:
2276: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
2277: l_debug_mode := NVL(l_debug_mode, 'Y');
2278:
2279: IF P_PA_DEBUG_MODE = 'Y' THEN
2280: pa_debug.set_process('GET_AMTTYPE_ID: ' || 'PLSQL','LOG',l_debug_mode);

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

2349: l_request_id NUMBER;
2350: BEGIN
2351: l_request_id := FND_GLOBAL.CONC_REQUEST_ID;
2352: -- Setting the Debug Statements
2353: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
2354: l_debug_mode := NVL(l_debug_mode, 'N');
2355: IF P_PA_DEBUG_MODE = 'Y' THEN
2356: PA_DEBUG.Set_Curr_Function( p_function => 'Refresh_Period_Profile',
2357: p_debug_mode => l_debug_mode );