DBA Data[Home] [Help]

APPS.EGO_MASS_UPDATE_PVT dependencies on FND_API

Line 59: x_return_status := FND_API.G_RET_STS_SUCCESS;

55:
56: BEGIN
57:
58: x_msg_count := 0;
59: x_return_status := FND_API.G_RET_STS_SUCCESS;
60:
61: -- Get the set_process_id
62: -- This will be the initial set_process_id which will
63: -- be changed in the update loop

Line 305: x_return_status := FND_API.G_RET_STS_ERROR;

301: EXCEPTION
302:
303: WHEN l_submit_failure_exc THEN
304: Write_Debug('Exception while submitting request');
305: x_return_status := FND_API.G_RET_STS_ERROR;
306: x_msg_count := 1;
307: x_msg_data := SQLERRM;
308:
309: WHEN OTHERS THEN

Line 311: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

307: x_msg_data := SQLERRM;
308:
309: WHEN OTHERS THEN
310: Write_Debug('WHEN OTHERS Exception');
311: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
312: x_msg_count := 1;
313: x_msg_data := SQLERRM;
314:
315: