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.5 2007/05/23 12:51:20 kvuyyuru 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 373: (((PA_PROJ_STRUCTURE_UTILS.G_PROJECT_ID IS NULL) AND (PA_PROJ_STRUCTURE_UTILS.G_BUDGET_VERSION_ID IS NULL))

369: -- 1) This API is called for the first time. Both globals are NULL.
370: -- 2) This API is called for a different project id other than the global project id.
371:
372: IF
373: (((PA_PROJ_STRUCTURE_UTILS.G_PROJECT_ID IS NULL) AND (PA_PROJ_STRUCTURE_UTILS.G_BUDGET_VERSION_ID IS NULL))
374: OR
375: (PA_PROJ_STRUCTURE_UTILS.G_PROJECT_ID <> p_project_ID)) THEN
376:
377: l_budget_version_id := Pa_Fp_wp_gen_amt_utils.get_wp_version_id

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

371:
372: IF
373: (((PA_PROJ_STRUCTURE_UTILS.G_PROJECT_ID IS NULL) AND (PA_PROJ_STRUCTURE_UTILS.G_BUDGET_VERSION_ID IS NULL))
374: OR
375: (PA_PROJ_STRUCTURE_UTILS.G_PROJECT_ID <> p_project_ID)) THEN
376:
377: l_budget_version_id := Pa_Fp_wp_gen_amt_utils.get_wp_version_id
378: (p_project_id => p_project_id
379: ,p_plan_type_id => null

Line 393: p_budget_version_id => PA_PROJ_STRUCTURE_UTILS.G_BUDGET_VERSION_ID,

389: p_proj_str_version_id => p_proj_str_version_id,
390: p_Task_str_version_id => p_Task_str_version_id,
391: p_start_date => p_start_date,
392: p_end_date => p_end_date,
393: p_budget_version_id => PA_PROJ_STRUCTURE_UTILS.G_BUDGET_VERSION_ID,
394: x_cost_rejn_flag => f1,
395: x_burden_rejn_flag => f2,
396: x_revenue_rejn_flag => f3,
397: x_pc_conv_rejn_flag => f4,

Line 477: PA_PROJ_STRUCTURE_UTILS.G_PROJECT_ID := p_project_id;

473: END IF;
474: */
475: --End: 6046307
476:
477: PA_PROJ_STRUCTURE_UTILS.G_PROJECT_ID := p_project_id;
478: PA_PROJ_STRUCTURE_UTILS.G_BUDGET_VERSION_ID := p_budget_version_id;
479:
480: END;
481:

Line 478: PA_PROJ_STRUCTURE_UTILS.G_BUDGET_VERSION_ID := p_budget_version_id;

474: */
475: --End: 6046307
476:
477: PA_PROJ_STRUCTURE_UTILS.G_PROJECT_ID := p_project_id;
478: PA_PROJ_STRUCTURE_UTILS.G_BUDGET_VERSION_ID := p_budget_version_id;
479:
480: END;
481:
482:

Line 483: END PA_PROJ_STRUCTURE_UTILS;

479:
480: END;
481:
482:
483: END PA_PROJ_STRUCTURE_UTILS;
484: