DBA Data[Home] [Help]

APPS.FV_FUNDS_AVAILABLE_PKG dependencies on APP_EXCEPTION

Line 322: app_exception.raise_exception;

318: EXCEPTION
319: when others then
320: err_message := 'GET_FLEX_VALUE_ID.L.'||sqlerrm;
321: FV_UTILITY.LOG_MESG(FND_LOG.LEVEL_UNEXPECTED, l_module_name||'.final_exception',err_message) ;
322: app_exception.raise_exception;
323: END get_flex_value_id;
324:
325: /******************************************************************/
326: /* This procedure parses the account flexfield low range using the*/

Line 645: app_exception.raise_exception;

641: /* will use this later.
642: EXCEPTION
643: when no_data_found then
644: fnd_message.set_name('FV','FV_FAI_NO_ACCOUNTS_FOUND');
645: app_exception.raise_exception;
646: when others then
647: err_message := 'FV_FUNDS_AVAILABLE_PKG.CALC_FUNDS '||sqlerrm;
648: fnd_message.set_name('FV','FV_FAI_GENERAL');
649: fnd_message.set_token('MSG',err_message);

Line 650: app_exception.raise_exception;

646: when others then
647: err_message := 'FV_FUNDS_AVAILABLE_PKG.CALC_FUNDS '||sqlerrm;
648: fnd_message.set_name('FV','FV_FAI_GENERAL');
649: fnd_message.set_token('MSG',err_message);
650: app_exception.raise_exception;
651: */
652:
653: -- set sums to 0
654: x_total := 0;

Line 805: app_exception.raise_exception;

801: END IF;
802: FV_UTILITY.DEBUG_MESG(FND_LOG.LEVEL_UNEXPECTED, l_module_name||'.final_exception',err_message);
803: fnd_message.set_name('FV','FV_FAI_GENERAL');
804: fnd_message.set_token('MSG',err_message);
805: app_exception.raise_exception;
806:
807: END calc_funds;
808:
809: