DBA Data[Home] [Help]

APPS.EAM_MATERIAL_ALLOCATIONS_PVT dependencies on FND_MESSAGE

Line 46: fnd_message.set_name('EAM', 'EAM_ALLOCATION_NOT_FOUND');

42: if (l_log and (FND_LOG.LEVEL_EXCEPTION >= FND_LOG.G_CURRENT_RUNTIME_LEVEL)) then
43: FND_LOG.STRING(FND_LOG.LEVEL_EXCEPTION, l_module,
44: 'Transaction Temp Id '|| p_transaction_temp_id || ' not found');
45: end if;
46: fnd_message.set_name('EAM', 'EAM_ALLOCATION_NOT_FOUND');
47: fnd_msg_pub.add;
48: return false;
49: WHEN OTHERS THEN
50: if (l_log and (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL)) then

Line 246: fnd_message.set_name('EAM', 'EAM_NON_POSITIVE_ISSUE_QTY');

242: if (l_final_qty <= 0) then
243: if (l_log and (FND_LOG.LEVEL_EXCEPTION >= FND_LOG.G_CURRENT_RUNTIME_LEVEL)) then
244: FND_LOG.STRING(FND_LOG.LEVEL_EXCEPTION, l_module, 'Cannot reduce qty to below 0');
245: end if;
246: fnd_message.set_name('EAM', 'EAM_NON_POSITIVE_ISSUE_QTY');
247: fnd_msg_pub.add;
248: FND_MSG_PUB.Count_And_Get('T', x_msg_count, x_msg_data);
249: return;
250: --Following elsif (3 lines): not sure whether we should allow delete here