DBA Data[Home] [Help]

APPS.PA_PROJECT_CORE1 dependencies on PA_EGO_WRAPPER_PUB

Line 5407: x_err_stage := 'Calling PA_EGO_WRAPPER_PUB.COPY_ITEM_ASSOCS API ...';

5403:
5404: -- anlee
5405: -- Copying item associations
5406:
5407: x_err_stage := 'Calling PA_EGO_WRAPPER_PUB.COPY_ITEM_ASSOCS API ...';
5408:
5409: BEGIN
5410: /*Following code added for selective copy project options. Tracking bug No 3464332*/
5411: OPEN cur_get_flag('PR_ITEM_ASSOC_FLAG');

Line 5416: PA_EGO_WRAPPER_PUB.COPY_ITEM_ASSOCS

5412: FETCH cur_get_flag INTO l_pr_item_assoc_flag;
5413: CLOSE cur_get_flag;
5414:
5415: IF 'Y' = l_pr_item_assoc_flag THEN
5416: PA_EGO_WRAPPER_PUB.COPY_ITEM_ASSOCS
5417: ( p_project_id_from => x_orig_project_id
5418: ,p_project_id_to => x_new_project_id
5419: ,p_init_msg_list => fnd_api.g_FALSE
5420: ,p_commit => fnd_api.g_FALSE

Line 5429: x_err_stack := x_err_stack||'->PA_EGO_WRAPPER_PUB.COPY_ITEM_ASSOCS';

5425:
5426: if l_return_status <> 'S' then
5427: x_err_code := 710;
5428: x_err_stage := pa_project_core1.get_message_from_stack( 'PA_ERR_COPY_ITEM_ASSOCS');
5429: x_err_stack := x_err_stack||'->PA_EGO_WRAPPER_PUB.COPY_ITEM_ASSOCS';
5430: rollback to copy_project;
5431: revert_proj_number(x_proj_number_gen_mode,x_new_project_number); -- Added for Bug# 7445534
5432: return;
5433: end if;

Line 5440: x_err_stage := 'API: '||'PA_EGO_WRAPPER_PUB.COPY_ITEM_ASSOCS'||

5436: x_err_code := 710;
5437: -- x_err_stage := pa_project_core1.get_message_from_stack( null );
5438: -- IF x_err_stage IS NULL
5439: -- THEN
5440: x_err_stage := 'API: '||'PA_EGO_WRAPPER_PUB.COPY_ITEM_ASSOCS'||
5441: ' SQL error message: '||SUBSTR( SQLERRM,1,1900);
5442: -- END IF;
5443: rollback to copy_project;
5444: revert_proj_number(x_proj_number_gen_mode,x_new_project_number); -- Added for Bug# 7445534