DBA Data[Home] [Help]

APPS.PA_PROJECT_PUB dependencies on PA_ACTIONS_PUB

Line 21284: PA_Actions_Pub.RUN_ACTION_CONC_PROCESS_WRP

21280:
21281: IF nvl(l_status_code,'-99') = 'APPROVED' THEN
21282:
21283: IF nvl(l_wf_enabled_flag,'N') <> 'Y' THEN
21284: PA_Actions_Pub.RUN_ACTION_CONC_PROCESS_WRP
21285: (
21286: p_project_id => l_project_id
21287: ,p_project_number => p_project_in.pa_project_number -- 3671408 Added IN Parameter and passing project_number
21288: ,x_msg_count => l_msg_count

Line 29414: -- Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper

29410: --Description: This procedure creates a deliverable and its related actions
29411: -- which are passed through actions PLSQL table
29412: --
29413: --Called subprograms: PA_DELIVERABLE_PUB.CREATE_DELIVERABLE
29414: -- Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper
29415: --
29416: --
29417: --
29418: --History:

Line 29880: -- invoke the api pa_actions_pub.create_dlvr_action_wrapper

29876: pa_debug.g_err_stage := 'Dlvr Type allow action creation ['|| l_dlvr_action_enabled||']';
29877: pa_debug.write(g_pkg_name,pa_debug.g_err_stage,3);
29878: END IF;
29879:
29880: -- invoke the api pa_actions_pub.create_dlvr_action_wrapper
29881: -- to create actions for the deliverable, insert records
29882: -- in OKE tables, create events if required.
29883:
29884: i := p_action_in_tbl.first();

Line 29914: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper

29910: IF (i_actn > 0 ) THEN
29911:
29912: IF ( l_dlvr_action_enabled = 'Y') THEN
29913:
29914: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper
29915: ( p_api_version => p_api_version
29916: , p_init_msg_list => FND_API.G_FALSE
29917: , p_commit => FND_API.G_FALSE
29918: , p_validate_only => FND_API.G_FALSE

Line 30437: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper

30433: END IF; -- l_dlvr_action_enabled = 'Y'
30434: END IF;
30435:
30436: -- Call api to create actions passing the newly populated plsql table
30437: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper
30438: ( p_api_version => p_api_version
30439: , p_init_msg_list => FND_API.G_FALSE
30440: , p_commit => FND_API.G_FALSE
30441: , p_validate_only => FND_API.G_FALSE

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

30449: , x_msg_count => l_msg_count
30450: , x_msg_data => l_msg_data);
30451:
30452: IF p_debug_mode = 'Y' THEN
30453: pa_debug.g_err_stage := 'Returned from Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper ['|| x_return_status||']';
30454: pa_debug.write(g_pkg_name,pa_debug.g_err_stage,3);
30455: END IF;
30456:
30457: IF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN

Line 30567: -- Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper

30563: --Description: This procedure updates a deliverable and its related actions
30564: -- which are passed through actions PLSQL table
30565: --
30566: --Called subprograms: PA_DELIVERABLE_PUB.UPDATE_DELIVERABLE
30567: -- Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper
30568: --
30569: --
30570: --
30571: --History:

Line 31009: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper

31005:
31006: IF (i_actn_upd > 0 ) THEN
31007:
31008: -- There are actions to be updated
31009: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper
31010: ( p_api_version => p_api_version
31011: , p_init_msg_list => FND_API.G_FALSE
31012: , p_commit => FND_API.G_FALSE
31013: , p_validate_only => FND_API.G_FALSE

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

31021: , x_msg_count => l_msg_count
31022: , x_msg_data => l_msg_data);
31023:
31024: IF p_debug_mode = 'Y' THEN
31025: pa_debug.write(g_pkg_name,'Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper upd return status['||x_return_status||']',3) ;
31026: END IF;
31027:
31028: IF (x_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN
31029: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 31039: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper

31035:
31036: IF (i_actn_ins > 0 ) THEN
31037:
31038: -- There are actions to be updated
31039: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper
31040: ( p_api_version => p_api_version
31041: , p_init_msg_list => FND_API.G_FALSE
31042: , p_commit => FND_API.G_FALSE
31043: , p_validate_only => FND_API.G_FALSE

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

31051: , x_msg_count => l_msg_count
31052: , x_msg_data => l_msg_data);
31053:
31054: IF p_debug_mode = 'Y' THEN
31055: pa_debug.write(g_pkg_name,'Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper upd return status['||x_return_status||']',3) ;
31056: END IF;
31057:
31058: IF (x_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN
31059: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 31465: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper

31461: l_action_in_tbl(i).action_id := l_action_id ; -- 3729250 added parameter
31462: END IF;
31463:
31464: -- Call api to update actions passing the newly populated plsql table
31465: Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper
31466: ( p_api_version => p_api_version
31467: , p_init_msg_list => FND_API.G_FALSE
31468: , p_commit => FND_API.G_FALSE
31469: , p_validate_only => FND_API.G_FALSE

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

31484: ELSIF x_return_status = FND_API.G_RET_STS_ERROR THEN
31485: RAISE FND_API.G_EXC_ERROR;
31486: END IF;
31487:
31488: ---- --dbms_output.put_line('after Pa_Actions_Pub.Create_Dlvr_Actions_Wrapper'||x_return_status);
31489: i := l_action_out_tbl.first();
31490:
31491: WHILE i IS NOT NULL LOOP
31492: ---- --dbms_output.put_line('action created ['||l_action_out_tbl(i).action_id||'] status ['||l_action_out_tbl(i).return_status);