DBA Data[Home] [Help]

APPS.PA_PROJECT_PUB dependencies on PA_ACTIONS_PUB

Line 21743: PA_Actions_Pub.RUN_ACTION_CONC_PROCESS_WRP

21739:
21740: IF nvl(l_status_code,'-99') = 'APPROVED' THEN
21741:
21742: IF nvl(l_wf_enabled_flag,'N') <> 'Y' THEN
21743: PA_Actions_Pub.RUN_ACTION_CONC_PROCESS_WRP
21744: (
21745: p_project_id => l_project_id
21746: ,p_project_number => p_project_in.pa_project_number -- 3671408 Added IN Parameter and passing project_number
21747: ,x_msg_count => l_msg_count

Line 30039: -- Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper

30035: --Description: This procedure creates a deliverable and its related actions
30036: -- which are passed through actions PLSQL table
30037: --
30038: --Called subprograms: PA_DELIVERABLE_PUB.CREATE_DELIVERABLE
30039: -- Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper
30040: --
30041: --
30042: --
30043: --History:

Line 30505: -- invoke the api pa_actions_pub.create_dlvr_action_wrapper

30501: pa_debug.g_err_stage := 'Dlvr Type allow action creation ['|| l_dlvr_action_enabled||']';
30502: pa_debug.write(g_pkg_name,pa_debug.g_err_stage,3);
30503: END IF;
30504:
30505: -- invoke the api pa_actions_pub.create_dlvr_action_wrapper
30506: -- to create actions for the deliverable, insert records
30507: -- in OKE tables, create events if required.
30508:
30509: i := p_action_in_tbl.first();

Line 30539: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper

30535: IF (i_actn > 0 ) THEN
30536:
30537: IF ( l_dlvr_action_enabled = 'Y') THEN
30538:
30539: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper
30540: ( p_api_version => p_api_version
30541: , p_init_msg_list => FND_API.G_FALSE
30542: , p_commit => FND_API.G_FALSE
30543: , p_validate_only => FND_API.G_FALSE

Line 31062: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper

31058: END IF; -- l_dlvr_action_enabled = 'Y'
31059: END IF;
31060:
31061: -- Call api to create actions passing the newly populated plsql table
31062: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper
31063: ( p_api_version => p_api_version
31064: , p_init_msg_list => FND_API.G_FALSE
31065: , p_commit => FND_API.G_FALSE
31066: , p_validate_only => FND_API.G_FALSE

Line 31078: pa_debug.g_err_stage := 'Returned from Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper ['|| x_return_status||']';

31074: , x_msg_count => l_msg_count
31075: , x_msg_data => l_msg_data);
31076:
31077: IF p_debug_mode = 'Y' THEN
31078: pa_debug.g_err_stage := 'Returned from Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper ['|| x_return_status||']';
31079: pa_debug.write(g_pkg_name,pa_debug.g_err_stage,3);
31080: END IF;
31081:
31082: IF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN

Line 31192: -- Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper

31188: --Description: This procedure updates a deliverable and its related actions
31189: -- which are passed through actions PLSQL table
31190: --
31191: --Called subprograms: PA_DELIVERABLE_PUB.UPDATE_DELIVERABLE
31192: -- Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper
31193: --
31194: --
31195: --
31196: --History:

Line 31634: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper

31630:
31631: IF (i_actn_upd > 0 ) THEN
31632:
31633: -- There are actions to be updated
31634: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper
31635: ( p_api_version => p_api_version
31636: , p_init_msg_list => FND_API.G_FALSE
31637: , p_commit => FND_API.G_FALSE
31638: , p_validate_only => FND_API.G_FALSE

Line 31650: pa_debug.write(g_pkg_name,'Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper upd return status['||x_return_status||']',3) ;

31646: , x_msg_count => l_msg_count
31647: , x_msg_data => l_msg_data);
31648:
31649: IF p_debug_mode = 'Y' THEN
31650: pa_debug.write(g_pkg_name,'Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper upd return status['||x_return_status||']',3) ;
31651: END IF;
31652:
31653: IF (x_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN
31654: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 31664: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper

31660:
31661: IF (i_actn_ins > 0 ) THEN
31662:
31663: -- There are actions to be updated
31664: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper
31665: ( p_api_version => p_api_version
31666: , p_init_msg_list => FND_API.G_FALSE
31667: , p_commit => FND_API.G_FALSE
31668: , p_validate_only => FND_API.G_FALSE

Line 31680: pa_debug.write(g_pkg_name,'Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper upd return status['||x_return_status||']',3) ;

31676: , x_msg_count => l_msg_count
31677: , x_msg_data => l_msg_data);
31678:
31679: IF p_debug_mode = 'Y' THEN
31680: pa_debug.write(g_pkg_name,'Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper upd return status['||x_return_status||']',3) ;
31681: END IF;
31682:
31683: IF (x_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN
31684: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 32090: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper

32086: l_action_in_tbl(i).action_id := l_action_id ; -- 3729250 added parameter
32087: END IF;
32088:
32089: -- Call api to update actions passing the newly populated plsql table
32090: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper
32091: ( p_api_version => p_api_version
32092: , p_init_msg_list => FND_API.G_FALSE
32093: , p_commit => FND_API.G_FALSE
32094: , p_validate_only => FND_API.G_FALSE

Line 32113: ---- --dbms_output.put_line('after Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper'||x_return_status);

32109: ELSIF x_return_status = FND_API.G_RET_STS_ERROR THEN
32110: RAISE FND_API.G_EXC_ERROR;
32111: END IF;
32112:
32113: ---- --dbms_output.put_line('after Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper'||x_return_status);
32114: i := l_action_out_tbl.first();
32115:
32116: WHILE i IS NOT NULL LOOP
32117: ---- --dbms_output.put_line('action created ['||l_action_out_tbl(i).action_id||'] status ['||l_action_out_tbl(i).return_status);