DBA Data[Home] [Help]

APPS.PA_PROJ_STRUCTURE_UTILS dependencies on PA_PROJ_STRUCTURE_UTILS

Line 1: package body PA_PROJ_STRUCTURE_UTILS as

1: package body PA_PROJ_STRUCTURE_UTILS as
2: /* $Header: PAXSTRUB.pls 120.7 2010/08/08 08:36:16 kmaddi ship $ */
3:
4: -- Bug Fix 5611909. Creating global variables to cache the project id and budget version id.
5: -- These will be used in the program unit Get_All_Wbs_Rejns and these will be set by using

Line 386: (((PA_PROJ_STRUCTURE_UTILS.G_PROJECT_ID IS NULL) AND (PA_PROJ_STRUCTURE_UTILS.G_BUDGET_VERSION_ID IS NULL))

382: -- 1) This API is called for the first time. Both globals are NULL.
383: -- 2) This API is called for a different project id other than the global project id.
384:
385: IF
386: (((PA_PROJ_STRUCTURE_UTILS.G_PROJECT_ID IS NULL) AND (PA_PROJ_STRUCTURE_UTILS.G_BUDGET_VERSION_ID IS NULL))
387: OR
388: (PA_PROJ_STRUCTURE_UTILS.G_PROJECT_ID <> p_project_ID)) THEN
389:
390: l_budget_version_id := Pa_Fp_wp_gen_amt_utils.get_wp_version_id

Line 388: (PA_PROJ_STRUCTURE_UTILS.G_PROJECT_ID <> p_project_ID)) THEN

384:
385: IF
386: (((PA_PROJ_STRUCTURE_UTILS.G_PROJECT_ID IS NULL) AND (PA_PROJ_STRUCTURE_UTILS.G_BUDGET_VERSION_ID IS NULL))
387: OR
388: (PA_PROJ_STRUCTURE_UTILS.G_PROJECT_ID <> p_project_ID)) THEN
389:
390: l_budget_version_id := Pa_Fp_wp_gen_amt_utils.get_wp_version_id
391: (p_project_id => p_project_id
392: ,p_plan_type_id => null

Line 406: p_budget_version_id => PA_PROJ_STRUCTURE_UTILS.G_BUDGET_VERSION_ID,

402: p_proj_str_version_id => p_proj_str_version_id,
403: p_Task_str_version_id => p_Task_str_version_id,
404: p_start_date => p_start_date,
405: p_end_date => p_end_date,
406: p_budget_version_id => PA_PROJ_STRUCTURE_UTILS.G_BUDGET_VERSION_ID,
407: x_cost_rejn_flag => f1,
408: x_burden_rejn_flag => f2,
409: x_revenue_rejn_flag => f3,
410: x_pc_conv_rejn_flag => f4,

Line 490: PA_PROJ_STRUCTURE_UTILS.G_PROJECT_ID := p_project_id;

486: END IF;
487: */
488: --End: 6046307
489:
490: PA_PROJ_STRUCTURE_UTILS.G_PROJECT_ID := p_project_id;
491: PA_PROJ_STRUCTURE_UTILS.G_BUDGET_VERSION_ID := p_budget_version_id;
492:
493: END;
494:

Line 491: PA_PROJ_STRUCTURE_UTILS.G_BUDGET_VERSION_ID := p_budget_version_id;

487: */
488: --End: 6046307
489:
490: PA_PROJ_STRUCTURE_UTILS.G_PROJECT_ID := p_project_id;
491: PA_PROJ_STRUCTURE_UTILS.G_BUDGET_VERSION_ID := p_budget_version_id;
492:
493: END;
494:
495:

Line 496: END PA_PROJ_STRUCTURE_UTILS;

492:
493: END;
494:
495:
496: END PA_PROJ_STRUCTURE_UTILS;
497: