DBA Data[Home] [Help]

APPS.PJI_FM_PLAN_MAINT_PVT dependencies on FND_API

Line 139: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

135: print_time(' p_context is ' || p_context || ' and rbs ver id is ' || p_rbs_version_id );
136:
137: IF (p_context NOT IN ('RBS' , 'PLANTYPE', 'INCREMENTAL', 'FULL')) THEN
138: print_time(' Invalid p_context.. exitting. ' );
139: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
140: RETURN;
141: END IF;
142:
143: /* Added for bug#5728852 - START */

Line 150: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

146: /* Added for bug#5728852 - END */
147:
148: IF (p_context = 'RBS' AND p_rbs_version_id IS NULL) THEN
149: print_time('Context is RBS and rbs version id is NULL. Pl. provide a rbs version id. Exitting.' );
150: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
151: RETURN;
152: END IF;
153:
154: IF (p_context = 'RBS') THEN

Line 1599: x_return_status := Fnd_Api.G_RET_STS_ERROR;

1595: EXCEPTION
1596:
1597: WHEN excp_resource_busy THEN
1598:
1599: x_return_status := Fnd_Api.G_RET_STS_ERROR;
1600: x_msg_code := Fnd_Message.GET_STRING( APPIN => 'PJI'
1601: , NAMEIN => 'PJI_LOCK_NOT_OBTAINED');
1602:
1603: -- PA_UTILS.ADD_MESSAGE( p_app_short_name => 'PJI'

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

1602:
1603: -- PA_UTILS.ADD_MESSAGE( p_app_short_name => 'PJI'
1604: -- , p_msg_name => 'PJI_LOCK_NOT_OBTAINED');
1605: Fnd_Message.SET_NAME('PJI', 'PJI_LOCK_NOT_OBTAINED');
1606: Fnd_Msg_Pub.add_detail(p_message_type=>Fnd_Api.G_RET_STS_ERROR);
1607:
1608: print_time ( ' UPDATE_LOCKS exception ' || SQLERRM);
1609:
1610: Pji_Pjp_Fp_Curr_Wrap.EXCP_HANDLER