DBA Data[Home] [Help]

APPS.ARP_PROCESS_WRITEOFF dependencies on APP_EXCEPTION

Line 444: app_exception.raise_exception;

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

Line 486: app_exception.raise_exception;

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

Line 590: app_exception.raise_exception;

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

Line 598: app_exception.raise_exception;

594: l_msg_data := FND_MSG_PUB.Get(FND_MSG_PUB.G_NEXT,FND_API.G_FALSE);
595:
596: FND_MESSAGE.SET_NAME ('AR', 'GENERIC_MESSAGE');
597: FND_MESSAGE.SET_TOKEN('GENERIC_TEXT',l_msg_data);
598: app_exception.raise_exception;
599:
600: END IF;
601:
602: END IF;