DBA Data[Home] [Help]

APPS.INV_EBI_UTIL dependencies on FND_MSG_PUB

Line 288: FND_MSG_PUB.add;

284: );
285: IF(l_attribute_group_obj.attr_group_app_id IS NULL ) THEN
286: FND_MESSAGE.set_name('INV','INV_EBI_APP_INVALID');
287: FND_MESSAGE.set_token('COL_VALUE', l_attribute_group_obj.application_short_name);
288: FND_MSG_PUB.add;
289: RAISE FND_API.g_exc_error;
290: END IF;
291: --End Bug 7240247
292:

Line 306: FND_MSG_PUB.add;

302:
303: IF(l_attribute_group_obj.attr_group_id IS NULL ) THEN
304: FND_MESSAGE.set_name('INV','INV_EBI_ATTR_GROUP_INVALID');
305: FND_MESSAGE.set_token('COL_VALUE', l_attribute_group_obj.attr_group_short_name);
306: FND_MSG_PUB.add;
307: RAISE FND_API.g_exc_error;
308: END IF;
309: --End Bug 7240247
310:

Line 360: fnd_msg_pub.count_and_get(

356: WHEN FND_API.g_exc_error THEN
357:
358: x_return_status := FND_API.g_ret_sts_error;
359: IF(x_msg_data IS NULL) THEN
360: fnd_msg_pub.count_and_get(
361: p_encoded => FND_API.g_false
362: ,p_count => x_msg_count
363: ,p_data => x_msg_data
364: );