DBA Data[Home] [Help]

APPS.UMX_PARTY_MERGE dependencies on FND_API

Line 25: p_return_status := FND_API.G_RET_STS_SUCCESS;

21:
22: BEGIN
23:
24: -- Set the return status to success unless an error occurs
25: p_return_status := FND_API.G_RET_STS_SUCCESS;
26:
27: -- Check for the request status. If it is Pending, don't allow the merge
28: open GET_STATUS;
29: fetch GET_STATUS into l_status_code;

Line 31: p_return_status := FND_API.G_RET_STS_ERROR;

27: -- Check for the request status. If it is Pending, don't allow the merge
28: open GET_STATUS;
29: fetch GET_STATUS into l_status_code;
30: if GET_STATUS%FOUND then
31: p_return_status := FND_API.G_RET_STS_ERROR;
32: FND_MESSAGE.SET_NAME('FND','UMX_MERGE_NOT_ALLOWED');
33: FND_MSG_PUB.ADD;
34: close GET_STATUS;
35: return;

Line 64: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

60: WHEN OTHERS THEN
61: FND_MESSAGE.SET_NAME('AR', 'HZ_API_OTHERS_EXCEP');
62: FND_MESSAGE.SET_TOKEN('ERROR' ,SQLERRM);
63: FND_MSG_PUB.ADD;
64: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
65:
66: END MERGE_PARTIES;
67:
68: end UMX_PARTY_MERGE;