DBA Data[Home] [Help]

APPS.CSE_CLIENT_EXT_PUB dependencies on FND_API

Line 14: x_return_status := FND_API.G_RET_STS_SUCCESS;

10: BEGIN
11:
12: -- Replace this with your code here
13:
14: x_return_status := FND_API.G_RET_STS_SUCCESS;
15: x_error_message := NULL;
16:
17: EXCEPTION
18:

Line 20: x_return_status := FND_API.G_RET_STS_ERROR;

16:
17: EXCEPTION
18:
19: WHEN OTHERS THEN
20: x_return_status := FND_API.G_RET_STS_ERROR;
21: x_error_message := sqlerrm;
22:
23: END rcv_post_transaction;
24: