DBA Data[Home] [Help]

APPS.PA_PROJECT_CORE1 dependencies on PA_CREATE_RESOURCE

Line 5175: PA_CREATE_RESOURCE.Copy_Resource_Lists( p_source_project_id => x_orig_project_id

5171: --Bug 3847507 : Shifted the following two calls to before copy_structure as the copy_wp_budget_versions
5172: -- call requires the resource list/ RBS information to have been copied
5173: --Copy resource lists from source to destination project
5174: BEGIN
5175: PA_CREATE_RESOURCE.Copy_Resource_Lists( p_source_project_id => x_orig_project_id
5176: ,p_destination_project_id => x_new_project_id
5177: ,x_return_status => l_return_status ) ;
5178: IF l_return_status <> 'S' THEN
5179: x_err_code := 905;

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

5176: ,p_destination_project_id => x_new_project_id
5177: ,x_return_status => l_return_status ) ;
5178: IF l_return_status <> 'S' THEN
5179: x_err_code := 905;
5180: x_err_stack := x_err_stack||'->PA_CREATE_RESOURCE.Copy_Resource_Lists';
5181: ROLLBACK TO copy_project;
5182: revert_proj_number(x_proj_number_gen_mode,x_new_project_number); -- Added for Bug# 7445534
5183: RETURN;
5184: END IF;

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

5184: END IF;
5185: EXCEPTION
5186: WHEN OTHERS THEN
5187: x_err_code := 905;
5188: x_err_stage := 'API: '||'PA_CREATE_RESOURCE.Copy_Resource_Lists'||
5189: ' SQL error message: '||SUBSTR( SQLERRM,1,1900);
5190: ROLLBACK TO copy_project;
5191: revert_proj_number(x_proj_number_gen_mode,x_new_project_number); -- Added for Bug# 7445534
5192: RETURN;

Line 5878: PA_CREATE_RESOURCE.Copy_Resource_Lists( p_source_project_id => x_orig_project_id

5874: /* Bug 3847507 : Shifted the foll. two calls to copy resource lists/rbs information to before
5875: the call for copy_structure
5876: --Copy resource lists from source to destination project
5877: BEGIN
5878: PA_CREATE_RESOURCE.Copy_Resource_Lists( p_source_project_id => x_orig_project_id
5879: ,p_destination_project_id => x_new_project_id
5880: ,x_return_status => l_return_status ) ;
5881: IF l_return_status <> 'S' THEN
5882: x_err_code := 905;

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

5879: ,p_destination_project_id => x_new_project_id
5880: ,x_return_status => l_return_status ) ;
5881: IF l_return_status <> 'S' THEN
5882: x_err_code := 905;
5883: x_err_stack := x_err_stack||'->PA_CREATE_RESOURCE.Copy_Resource_Lists';
5884: ROLLBACK TO copy_project;
5885: RETURN;
5886: END IF;
5887: EXCEPTION

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

5886: END IF;
5887: EXCEPTION
5888: WHEN OTHERS THEN
5889: x_err_code := 905;
5890: x_err_stage := 'API: '||'PA_CREATE_RESOURCE.Copy_Resource_Lists'||
5891: ' SQL error message: '||SUBSTR( SQLERRM,1,1900);
5892: ROLLBACK TO copy_project;
5893: RETURN;
5894: END ;