DBA Data[Home] [Help]

APPS.PA_PROJECT_CORE1 dependencies on PA_ACCUM_PROJ_LIST

Line 197: -- Modified the call to pa_accum_proj_list.Insert_Accum API.

193: -- 18-DEC-02 gjain For bug 2588244 Added logic in copy_project to copy the
194: -- default calendar from the organization specified in quick entry
195: --
196: -- 11-Feb-03 sacgupta Bug2787577.
197: -- Modified the call to pa_accum_proj_list.Insert_Accum API.
198: -- Now this API will be called for Projects only and not for
199: -- Project Templates.
200: --
201:

Line 5423: -- Bug2787577. If x_template_flag = 'Y', do not call API pa_accum_proj_list.Insert_accum.

5419: -- anlee end of changes
5420:
5421: --EH Changes
5422: --
5423: -- Bug2787577. If x_template_flag = 'Y', do not call API pa_accum_proj_list.Insert_accum.
5424: -- Encapsulated the EH changes inside the IF - END IF
5425: --
5426: IF x_template_flag = 'N' THEN
5427: BEGIN

Line 5429: pa_accum_proj_list.Insert_Accum

5425: --
5426: IF x_template_flag = 'N' THEN
5427: BEGIN
5428: x_err_stage := 'PSI Project List-Insert Accum';
5429: pa_accum_proj_list.Insert_Accum
5430: ( p_project_id => x_new_project_id
5431: ,x_return_status => l_return_status
5432: ,x_msg_count => l_msg_count
5433: ,x_msg_data => l_msg_data

Line 5439: x_err_stack := x_err_stack||'->pa_accum_proj_list.Insert_Accum';

5435: IF l_return_status <> fnd_api.g_ret_sts_success
5436: THEN
5437: x_err_code := 735;
5438: x_err_stage := pa_project_core1.get_message_from_stack('PA_ERR_INSERT_ACCUM');
5439: x_err_stack := x_err_stack||'->pa_accum_proj_list.Insert_Accum';
5440: rollback to copy_project;
5441: revert_proj_number(x_proj_number_gen_mode,x_new_project_number); -- Added for Bug# 7445534
5442: return;
5443: END IF;

Line 5449: x_err_stage := 'API: '||'pa_accum_proj_list.Insert_Accum'||' SQL error message: '||SUBSTR( SQLERRM,1,1900);

5445: x_err_code := 735;
5446: -- x_err_stage := pa_project_core1.get_message_from_stack( null );
5447: -- IF x_err_stage IS NULL
5448: -- THEN
5449: x_err_stage := 'API: '||'pa_accum_proj_list.Insert_Accum'||' SQL error message: '||SUBSTR( SQLERRM,1,1900);
5450: -- END IF;
5451: rollback to copy_project;
5452: revert_proj_number(x_proj_number_gen_mode,x_new_project_number); -- Added for Bug# 7445534
5453: return;