DBA Data[Home] [Help]

APPS.PA_PROJECT_CORE1 dependencies on PA_CREATE_RESOURCE

Line 5107: PA_CREATE_RESOURCE.Copy_Resource_Lists( p_source_project_id => x_orig_project_id

5103: --Bug 3847507 : Shifted the following two calls to before copy_structure as the copy_wp_budget_versions
5104: -- call requires the resource list/ RBS information to have been copied
5105: --Copy resource lists from source to destination project
5106: BEGIN
5107: PA_CREATE_RESOURCE.Copy_Resource_Lists( p_source_project_id => x_orig_project_id
5108: ,p_destination_project_id => x_new_project_id
5109: ,x_return_status => l_return_status ) ;
5110: IF l_return_status <> 'S' THEN
5111: x_err_code := 905;

Line 5112: x_err_stack := x_err_stack||'->PA_CREATE_RESOURCE.Copy_Resource_Lists';

5108: ,p_destination_project_id => x_new_project_id
5109: ,x_return_status => l_return_status ) ;
5110: IF l_return_status <> 'S' THEN
5111: x_err_code := 905;
5112: x_err_stack := x_err_stack||'->PA_CREATE_RESOURCE.Copy_Resource_Lists';
5113: ROLLBACK TO copy_project;
5114: revert_proj_number(x_proj_number_gen_mode,x_new_project_number); -- Added for Bug# 7445534
5115: RETURN;
5116: END IF;

Line 5120: x_err_stage := 'API: '||'PA_CREATE_RESOURCE.Copy_Resource_Lists'||

5116: END IF;
5117: EXCEPTION
5118: WHEN OTHERS THEN
5119: x_err_code := 905;
5120: x_err_stage := 'API: '||'PA_CREATE_RESOURCE.Copy_Resource_Lists'||
5121: ' SQL error message: '||SUBSTR( SQLERRM,1,1900);
5122: ROLLBACK TO copy_project;
5123: revert_proj_number(x_proj_number_gen_mode,x_new_project_number); -- Added for Bug# 7445534
5124: RETURN;

Line 5810: PA_CREATE_RESOURCE.Copy_Resource_Lists( p_source_project_id => x_orig_project_id

5806: /* Bug 3847507 : Shifted the foll. two calls to copy resource lists/rbs information to before
5807: the call for copy_structure
5808: --Copy resource lists from source to destination project
5809: BEGIN
5810: PA_CREATE_RESOURCE.Copy_Resource_Lists( p_source_project_id => x_orig_project_id
5811: ,p_destination_project_id => x_new_project_id
5812: ,x_return_status => l_return_status ) ;
5813: IF l_return_status <> 'S' THEN
5814: x_err_code := 905;

Line 5815: x_err_stack := x_err_stack||'->PA_CREATE_RESOURCE.Copy_Resource_Lists';

5811: ,p_destination_project_id => x_new_project_id
5812: ,x_return_status => l_return_status ) ;
5813: IF l_return_status <> 'S' THEN
5814: x_err_code := 905;
5815: x_err_stack := x_err_stack||'->PA_CREATE_RESOURCE.Copy_Resource_Lists';
5816: ROLLBACK TO copy_project;
5817: RETURN;
5818: END IF;
5819: EXCEPTION

Line 5822: x_err_stage := 'API: '||'PA_CREATE_RESOURCE.Copy_Resource_Lists'||

5818: END IF;
5819: EXCEPTION
5820: WHEN OTHERS THEN
5821: x_err_code := 905;
5822: x_err_stage := 'API: '||'PA_CREATE_RESOURCE.Copy_Resource_Lists'||
5823: ' SQL error message: '||SUBSTR( SQLERRM,1,1900);
5824: ROLLBACK TO copy_project;
5825: RETURN;
5826: END ;