DBA Data[Home] [Help]

APPS.AMW_GEN_APPROVAL_PVT dependencies on STANDARD

Line 404: -- Standard call to get message count and if count=1, get the message

400:
401: WHEN FND_API.G_EXC_ERROR THEN
402: ROLLBACK TO start_process;
403: x_return_status := FND_API.G_RET_STS_ERROR;
404: -- Standard call to get message count and if count=1, get the message
405: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,p_count => x_msg_count,p_data => x_msg_data);
406:
407: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
408: ROLLBACK TO start_process;

Line 410: -- Standard call to get message count and if count=1, get the message

406:
407: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
408: ROLLBACK TO start_process;
409: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
410: -- Standard call to get message count and if count=1, get the message
411: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,p_count => x_msg_count,p_data => x_msg_data);
412:
413: WHEN OTHERS THEN
414: ROLLBACK TO start_process;

Line 420: -- Standard call to get message count and if count=1, get the message

416: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
417: THEN
418: FND_MSG_PUB.Add_Exc_Msg(G_PKG_NAME,l_api_name);
419: END IF;
420: -- Standard call to get message count and if count=1, get the message
421: FND_MSG_PUB.Count_And_Get (p_encoded => FND_API.G_FALSE,p_count => x_msg_count,p_data => x_msg_data);
422:
423: END StartProcess;
424: