DBA Data[Home] [Help]

APPS.AMS_CPAGEUTILITY_PVT dependencies on FND_MESSAGE

Line 2410: -- push this data to FND_Messages so that we see it in the JSPs as well.

2406: OPEN c_delv_details;
2407: FETCH c_delv_details INTO l_start_date, l_end_date;
2408: CLOSE c_delv_details;
2409: --
2410: -- push this data to FND_Messages so that we see it in the JSPs as well.
2411: FND_MSG_PUB.add_exc_msg (g_pkg_name, l_api_name, 'Data for IMAGE');
2412: IF p_attr_types_image IS NOT NULL
2413: AND
2414: p_attr_values_image IS NOT NULL

Line 3939: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');

3935:
3936: IF (SQL%NOTFOUND) THEN
3937: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error)
3938: THEN
3939: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');
3940: FND_MSG_PUB.add;
3941: END IF;
3942: RAISE FND_API.g_exc_error;
3943: END IF;