DBA Data[Home] [Help]

APPS.APP_EXCEPTION dependencies on APP_EXCEPTION

Line 1: package body app_exception as

1: package body app_exception as
2: /* $Header: AFEXCEPB.pls 120.2 2005/08/19 20:27:05 tkamiya ship $ */
3:
4:
5:

Line 64: 'fnd.plsql.APP_EXCEPTION.RAISE_EXCEPTION.dict_auto_log', return_text);

60: end if;
61:
62: if (FND_LOG.LEVEL_EXCEPTION >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
63: FND_LOG.STRING(FND_LOG.LEVEL_EXCEPTION,
64: 'fnd.plsql.APP_EXCEPTION.RAISE_EXCEPTION.dict_auto_log', return_text);
65: end if;
66:
67: -- raise_application_error message should be <= 512 bytes
68: return_text := substrb(return_text, 1, 512);

Line 107: app_exception.raise_exception;

103: fnd_message.set_name('FND', 'FORM_INVALID_ARGUMENT');
104: fnd_message.set_token('PROCEDURE', procname);
105: fnd_message.set_token('ARGUMENT', argument);
106: fnd_message.set_token('VALUE', value);
107: app_exception.raise_exception;
108: end invalid_argument;
109:
110: end app_exception;

Line 110: end app_exception;

106: fnd_message.set_token('VALUE', value);
107: app_exception.raise_exception;
108: end invalid_argument;
109:
110: end app_exception;