DBA Data[Home] [Help]

APPS.INV_MATERIAL_ALLOCATIONS_GRP dependencies on FND_MESSAGE

Line 57: fnd_message.set_name('INV', 'INV_ALLOCATION_NOT_FOUND');

53: if (l_elog) then
54: FND_LOG.STRING(FND_LOG.LEVEL_EXCEPTION, l_module,
55: 'Transaction Temp Id '|| p_transaction_temp_id || ' not found');
56: end if;
57: fnd_message.set_name('INV', 'INV_ALLOCATION_NOT_FOUND');
58: fnd_msg_pub.add;
59: return false;
60: WHEN OTHERS THEN
61: if (l_slog) then

Line 278: fnd_message.set_name('INV', 'INV_NON_POSITIVE_ISSUE_QTY');

274: if (l_final_qty <= 0) then
275: if (l_elog) then
276: FND_LOG.STRING(FND_LOG.LEVEL_EXCEPTION, l_module, 'Cannot reduce qty to below 0');
277: end if;
278: fnd_message.set_name('INV', 'INV_NON_POSITIVE_ISSUE_QTY');
279: fnd_msg_pub.add;
280: FND_MSG_PUB.Count_And_Get('T', x_msg_count, x_msg_data);
281: return;
282: --Following elsif (3 lines): not sure whether we should allow delete here