DBA Data[Home] [Help]

APPS.FV_FUNDS_AVAILABLE_PKG dependencies on APP_EXCEPTION

Line 338: app_exception.raise_exception;

334: EXCEPTION
335: when others then
336: err_message := 'GET_FLEX_VALUE_ID.L.'||sqlerrm;
337: FV_UTILITY.LOG_MESG(FND_LOG.LEVEL_UNEXPECTED, l_module_name||'.final_exception',err_message) ;
338: app_exception.raise_exception;
339: END get_flex_value_id;
340:
341: /******************************************************************/
342: /* This procedure parses the account flexfield low range using the*/

Line 661: app_exception.raise_exception;

657: /* will use this later.
658: EXCEPTION
659: when no_data_found then
660: fnd_message.set_name('FV','FV_FAI_NO_ACCOUNTS_FOUND');
661: app_exception.raise_exception;
662: when others then
663: err_message := 'FV_FUNDS_AVAILABLE_PKG.CALC_FUNDS '||sqlerrm;
664: fnd_message.set_name('FV','FV_FAI_GENERAL');
665: fnd_message.set_token('MSG',err_message);

Line 666: app_exception.raise_exception;

662: when others then
663: err_message := 'FV_FUNDS_AVAILABLE_PKG.CALC_FUNDS '||sqlerrm;
664: fnd_message.set_name('FV','FV_FAI_GENERAL');
665: fnd_message.set_token('MSG',err_message);
666: app_exception.raise_exception;
667: */
668:
669: -- set sums to 0
670: x_total := 0;

Line 826: app_exception.raise_exception;

822: END IF;
823: FV_UTILITY.DEBUG_MESG(FND_LOG.LEVEL_UNEXPECTED, l_module_name||'.final_exception',err_message);
824: fnd_message.set_name('FV','FV_FAI_GENERAL');
825: fnd_message.set_token('MSG',err_message);
826: app_exception.raise_exception;
827:
828: END calc_funds;
829:
830: