DBA Data[Home] [Help]

APPS.ARP_PROCESS_WRITEOFF dependencies on APP_EXCEPTION

Line 448: app_exception.raise_exception;

444: arp_util.debug('Maximum write-off limit :'||to_char(l_max_wrt_off_amount));
445:
446: IF l_max_wrt_off_amount IS NULL THEN
447: fnd_message.set_name ('AR','AR_SYSTEM_WR_NO_LIMIT_SET');
448: app_exception.raise_exception;
449: END IF;
450:
451: arp_util.debug('Functional Currency :'||l_functional_currency);
452:

Line 490: app_exception.raise_exception;

486: -- Bug 3136127 - included checks on minimum system limit
487: IF l_tot_write_off_amount < 0 THEN
488: IF l_min_wrt_off_amount IS NULL THEN
489: fnd_message.set_name ('AR','AR_SYSTEM_WR_NO_LIMIT_SET');
490: app_exception.raise_exception;
491: END IF;
492: END IF;
493:
494: IF l_functional_currency <> l_receipt_currency_code THEN

Line 595: app_exception.raise_exception;

591: IF l_msg_count = 1 THEN
592:
593: FND_MESSAGE.SET_NAME ('AR', 'GENERIC_MESSAGE');
594: FND_MESSAGE.SET_TOKEN('GENERIC_TEXT',l_msg_data);
595: app_exception.raise_exception;
596: ELSIF l_msg_count > 1 THEN
597: --retrive only first messages from the stack and display it .
598:
599: l_msg_data := FND_MSG_PUB.Get(FND_MSG_PUB.G_NEXT,FND_API.G_FALSE);

Line 603: app_exception.raise_exception;

599: l_msg_data := FND_MSG_PUB.Get(FND_MSG_PUB.G_NEXT,FND_API.G_FALSE);
600:
601: FND_MESSAGE.SET_NAME ('AR', 'GENERIC_MESSAGE');
602: FND_MESSAGE.SET_TOKEN('GENERIC_TEXT',l_msg_data);
603: app_exception.raise_exception;
604:
605: END IF;
606:
607: END IF;