DBA Data[Home] [Help]

APPS.USER_PKG_SERIAL dependencies on FND_API

Line 16: -- FND_API.G_RET_STS_SUCCESS and returned.

12: -- Note that the serial Number returned should not be greater than 30 characters.
13: --
14: -- 2) x_return_status: on successful generation of the serial number using
15: -- the User defined logic, this variable needs TO be assigned the value
16: -- FND_API.G_RET_STS_SUCCESS and returned.
17: -- All other return values returned in the varaible are interpreted as error
18: -- by the calling program
19: --
20: -- 3) x_msg_data: Error message should be returned in this variable on

Line 38: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

34: NULL;
35:
36: EXCEPTION
37: WHEN OTHERS THEN
38: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
39: x_serial_number := NULL;
40: IF fnd_msg_pub.check_msg_level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
41: THEN
42: FND_MSG_PUB.Add_Exc_Msg ('USER_PKG_SERIAL','GENERATE_SERIAL_NUMBER');