DBA Data[Home] [Help]

APPS.PA_PROJ_FP_OPTIONS_PUB dependencies on PA_BILLING_CORE

Line 2896: pa_billing_core.check_funding_level(x_project_id => p_target_project_id,

2892: -- Moved this piece of code from the previous if to this if so that the API check_funding_level
2893: -- is called only if the project is AB enabled and the PT is AR.
2894: --Bug#2675335
2895: --Code added to get the project level funding.
2896: pa_billing_core.check_funding_level(x_project_id => p_target_project_id,
2897: x_funding_level => l_proj_level_funding,
2898: x_err_code => l_err_code,
2899: x_err_stage => l_err_stage,
2900: x_err_stack => l_err_stack);

Line 2908: pa_debug.g_err_stage := 'Error returned by pa_billing_core.check_funding_level:Err_code:'

2904: the above call is SQL error and not a pre-defined one in the check_funding_level
2905: procedure. */
2906: IF (l_err_code < 0 OR l_err_code = 100) THEN
2907: IF P_PA_DEBUG_MODE = 'Y' THEN
2908: pa_debug.g_err_stage := 'Error returned by pa_billing_core.check_funding_level:Err_code:'
2909: || to_char(l_err_code) || ':Err_stage:' || l_err_stage
2910: || ':Err_stack' || l_err_stack;
2911: pa_debug.write('Get_Default_FP_Options: ' || l_module_name,pa_debug.g_err_stage,5);
2912: END IF;