DBA Data[Home] [Help]

APPS.INV_EBI_UTIL dependencies on FND_MESSAGE

Line 286: FND_MESSAGE.set_name('INV','INV_EBI_APP_INVALID');

282: l_attribute_group_obj.attr_group_app_id := get_application_id(
283: p_application_short_name => l_attribute_group_obj.application_short_name
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;

Line 287: FND_MESSAGE.set_token('COL_VALUE', l_attribute_group_obj.application_short_name);

283: p_application_short_name => l_attribute_group_obj.application_short_name
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

Line 304: FND_MESSAGE.set_name('INV','INV_EBI_ATTR_GROUP_INVALID');

300: p_attr_group_type => l_attribute_group_obj.attr_group_type
301: );
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;

Line 305: FND_MESSAGE.set_token('COL_VALUE', l_attribute_group_obj.attr_group_short_name);

301: );
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