DBA Data[Home] [Help]

APPS.IEC_RECOVER_PVT dependencies on FND_API

Line 203: WHEN FND_API.G_EXC_ERROR THEN

199:
200:
201:
202: EXCEPTION
203: WHEN FND_API.G_EXC_ERROR THEN
204: ROLLBACK;
205: RAISE;
206: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
207: ROLLBACK;

Line 206: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

202: EXCEPTION
203: WHEN FND_API.G_EXC_ERROR THEN
204: ROLLBACK;
205: RAISE;
206: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
207: ROLLBACK;
208: RAISE;
209:
210: ----------------------------------------------------------------

Line 224: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

220: , SQLCODE
221: , SQLERRM
222: );
223: ROLLBACK;
224: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
225:
226: END RECOVER_LIST_ENTRIES;
227:
228: -----------------------------++++++-------------------------------

Line 259: l_status_code := FND_API.G_RET_STS_SUCCESS;

255: l_api_name CONSTANT VARCHAR2(30) := 'RECOVER_SCHED_ENTRIES';
256: l_action_id NUMBER;
257:
258: BEGIN
259: l_status_code := FND_API.G_RET_STS_SUCCESS;
260: x_action_id := NULL;
261:
262: ----------------------------------------------------------------
263: -- Set the source id to use for logging in

Line 298: -- If either of the two FND_API exceptions have been thrown then

294: X_ACTION_ID := l_action_id;
295:
296: EXCEPTION
297: ----------------------------------------------------------------
298: -- If either of the two FND_API exceptions have been thrown then
299: -- the procedure has already logged the error and we now just
300: -- set the return status flag and return to the calling
301: -- procedure.
302: ----------------------------------------------------------------

Line 303: WHEN FND_API.G_EXC_ERROR THEN

299: -- the procedure has already logged the error and we now just
300: -- set the return status flag and return to the calling
301: -- procedure.
302: ----------------------------------------------------------------
303: WHEN FND_API.G_EXC_ERROR THEN
304: ROLLBACK;
305: RAISE_APPLICATION_ERROR(-20999, g_error_msg);
306: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
307: ROLLBACK;

Line 306: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

302: ----------------------------------------------------------------
303: WHEN FND_API.G_EXC_ERROR THEN
304: ROLLBACK;
305: RAISE_APPLICATION_ERROR(-20999, g_error_msg);
306: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
307: ROLLBACK;
308: RAISE_APPLICATION_ERROR(-20999, g_error_msg);
309:
310: ----------------------------------------------------------------