DBA Data[Home] [Help]

APPS.PA_FP_PLANNING_TRANSACTION_PUB dependencies on PA_WORKPLAN_ATTR_UTILS

Line 11925: l_wp_versioning_enabled_flag := PA_WORKPLAN_ATTR_UTILS.Check_Wp_Versioning_Enabled(p_project_id);

11921: END IF;
11922:
11923:
11924: -- Check if versioning is enabled for wp structure
11925: l_wp_versioning_enabled_flag := PA_WORKPLAN_ATTR_UTILS.Check_Wp_Versioning_Enabled(p_project_id);
11926:
11927: -- Fetch all the working plan versions in a table
11928: OPEN working_workplan_versions_cur;
11929: FETCH working_workplan_versions_cur

Line 11945: (nvl(PA_WORKPLAN_ATTR_UTILS.Check_Wp_Versioning_Enabled(p_project_id),'N') = 'N'

11941: /* Collecting all the working version records and inserting into the pji table
11942: with negative values of budget lines */
11943: IF nvl(p_resource_list_change, 'N') = 'Y' OR nvl(p_time_phase_change, 'N') = 'Y'
11944: OR nvl(p_track_costs_flag_change, 'N') = 'Y' OR (nvl(p_rbs_version_change, 'N') = 'Y' AND
11945: (nvl(PA_WORKPLAN_ATTR_UTILS.Check_Wp_Versioning_Enabled(p_project_id),'N') = 'N'
11946: OR nvl(PA_PROJECT_STRUCTURE_UTILS.check_sharing_enabled(p_project_id),'N') = 'Y')) THEN
11947:
11948: IF l_debug_mode = 'Y' THEN
11949: pa_debug.g_err_stage:='About to insert negative lines';

Line 12319: (nvl(PA_WORKPLAN_ATTR_UTILS.Check_Wp_Versioning_Enabled(p_project_id),'N') = 'N' -- Jun-15-2004 Bug 3619687

12315: -- Jun-28-2004 Bug 3725414 rbs_version_change should be propagated to working
12316: -- workplan versions even though versioning is enbled but shared structure
12317:
12318: IF nvl(p_rbs_version_change, 'N') = 'Y' AND
12319: (nvl(PA_WORKPLAN_ATTR_UTILS.Check_Wp_Versioning_Enabled(p_project_id),'N') = 'N' -- Jun-15-2004 Bug 3619687
12320: OR nvl(PA_PROJECT_STRUCTURE_UTILS.check_sharing_enabled(p_project_id),'N') = 'Y') -- Jun-28-2004 Bug 3725414
12321: THEN
12322: /** Bug 3725414
12323: -- Fetch all the workplan versions

Line 12456: (nvl(PA_WORKPLAN_ATTR_UTILS.Check_Wp_Versioning_Enabled(p_project_id),'N') = 'N'

12452: /* Collecting all the working version records and inserting into the pji table
12453: with positive values of budget lines */
12454: IF nvl(p_resource_list_change, 'N') = 'Y' OR nvl(p_time_phase_change, 'N') = 'Y'
12455: OR nvl(p_track_costs_flag_change, 'N') = 'Y' OR ( nvl(p_rbs_version_change, 'N') = 'Y' AND
12456: (nvl(PA_WORKPLAN_ATTR_UTILS.Check_Wp_Versioning_Enabled(p_project_id),'N') = 'N'
12457: OR nvl(PA_PROJECT_STRUCTURE_UTILS.check_sharing_enabled(p_project_id),'N') = 'Y')) THEN
12458: IF l_debug_mode = 'Y' THEN
12459: pa_debug.g_err_stage:='About to insert positive values with new rbs element ids';
12460: pa_debug.write( g_module_name,pa_debug.g_err_stage,5);