DBA Data[Home] [Help]

APPS.PJI_FM_PLAN_MAINT_PVT dependencies on FND_API

Line 236: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

232: print_time(' p_context is ' || p_context || ' and rbs ver id is ' || p_rbs_version_id );
233:
234: IF (p_context NOT IN ('RBS' , 'PLANTYPE', 'INCREMENTAL', 'FULL')) THEN
235: print_time(' Invalid p_context.. exitting. ' );
236: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
237: RETURN;
238: END IF;
239:
240: /* Added for bug#5728852 - START */

Line 247: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

243: /* Added for bug#5728852 - END */
244:
245: IF (p_context = 'RBS' AND p_rbs_version_id IS NULL) THEN
246: print_time('Context is RBS and rbs version id is NULL. Pl. provide a rbs version id. Exitting.' );
247: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
248: RETURN;
249: END IF;
250:
251: IF (p_context = 'RBS') THEN

Line 1698: x_return_status := Fnd_Api.G_RET_STS_ERROR;

1694: EXCEPTION
1695:
1696: WHEN excp_resource_busy THEN
1697:
1698: x_return_status := Fnd_Api.G_RET_STS_ERROR;
1699: x_msg_code := Fnd_Message.GET_STRING( APPIN => 'PJI'
1700: , NAMEIN => 'PJI_LOCK_NOT_OBTAINED');
1701:
1702: -- PA_UTILS.ADD_MESSAGE( p_app_short_name => 'PJI'

Line 1705: Fnd_Msg_Pub.add_detail(p_message_type=>Fnd_Api.G_RET_STS_ERROR);

1701:
1702: -- PA_UTILS.ADD_MESSAGE( p_app_short_name => 'PJI'
1703: -- , p_msg_name => 'PJI_LOCK_NOT_OBTAINED');
1704: Fnd_Message.SET_NAME('PJI', 'PJI_LOCK_NOT_OBTAINED');
1705: Fnd_Msg_Pub.add_detail(p_message_type=>Fnd_Api.G_RET_STS_ERROR);
1706:
1707: print_time ( ' UPDATE_LOCKS exception ' || SQLERRM);
1708:
1709: Pji_Pjp_Fp_Curr_Wrap.EXCP_HANDLER