DBA Data[Home] [Help]

APPS.PA_BILLING_CORE dependencies on PA_BUDGET_UTILS

Line 309: dummy := pa_budget_utils.check_proj_budget_exists(

305:
306:
307: /* Code Changes ends here for Bug#2668857*/
308:
309: dummy := pa_budget_utils.check_proj_budget_exists(
310: x_project_id,
311: 'B', -- budget status code
312: 'AC'); -- budget type code
313: END IF; /* End if for l_fin_plan_type_id is NOT NULL THEN for Bug#2668857*/

Line 375: pa_budget_utils.get_task_budget_amount(

371: x_revenue :=0;
372: if fund_rec.task_id is not null then
373:
374: x_task_id := fund_rec.task_id;
375: pa_budget_utils.get_task_budget_amount(
376: x_project_id,
377: x_task_id,
378: 'AR', -- x_budget_type
379: 'DRAFT', -- x_which_version

Line 479: dummy := pa_budget_utils.check_task_budget_exists(

475: x_fin_plan_type_id => l_fin_plan_type_id ,
476: x_version_type => l_version_type );
477: ELSE
478: /* Code Changes ends here for Bug#2668857*/
479: dummy := pa_budget_utils.check_task_budget_exists(
480: x_task_id,
481: 'B', -- budget status code
482: 'AC'); -- budget type code
483: END IF;-- End if of l_fin_plan_type_id is NOT NULL Bug#2668857