DBA Data[Home] [Help]

APPS.PA_PROJ_FP_OPTIONS_PUB dependencies on PA_BILLING_CORE

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

2937: -- Moved this piece of code from the previous if to this if so that the API check_funding_level
2938: -- is called only if the project is AB enabled and the PT is AR.
2939: --Bug#2675335
2940: --Code added to get the project level funding.
2941: pa_billing_core.check_funding_level(x_project_id => p_target_project_id,
2942: x_funding_level => l_proj_level_funding,
2943: x_err_code => l_err_code,
2944: x_err_stage => l_err_stage,
2945: x_err_stack => l_err_stack);

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

2949: the above call is SQL error and not a pre-defined one in the check_funding_level
2950: procedure. */
2951: IF (l_err_code < 0 OR l_err_code = 100) THEN
2952: IF P_PA_DEBUG_MODE = 'Y' THEN
2953: pa_debug.g_err_stage := 'Error returned by pa_billing_core.check_funding_level:Err_code:'
2954: || to_char(l_err_code) || ':Err_stage:' || l_err_stage
2955: || ':Err_stack' || l_err_stack;
2956: pa_debug.write('Get_Default_FP_Options: ' || l_module_name,pa_debug.g_err_stage,5);
2957: END IF;