DBA Data[Home] [Help]

APPS.FND_SESSION_MANAGEMENT dependencies on APP_EXCEPTION

Line 316: app_exception.raise_exception(exception_text=>

312: p_mac_key := null;
313: end if;
314: exception
315: when others then
316: app_exception.raise_exception(exception_text=>
317: 'Invalid Key defined in the profile FND_FIXED_SEC_KEY.' ||
318: ' The key should be a Hexadecimal string of length 64');
319: app_exception.raise_exception;
320: end get_fixed_sec_keys;

Line 319: app_exception.raise_exception;

315: when others then
316: app_exception.raise_exception(exception_text=>
317: 'Invalid Key defined in the profile FND_FIXED_SEC_KEY.' ||
318: ' The key should be a Hexadecimal string of length 64');
319: app_exception.raise_exception;
320: end get_fixed_sec_keys;
321:
322:
323: function createSessionPrivate(p_user_id in number,

Line 2221: app_exception.raise_exception(exception_text=>

2217: session_id = p_session_id;
2218: return user_id;
2219: exception
2220: when no_data_found then
2221: app_exception.raise_exception(exception_text=>
2222: 'Invalid Session Id ');
2223: app_exception.raise_exception;
2224: when others then
2225: fnd_message.set_name('FND', 'SQL_PLSQL_ERROR');

Line 2223: app_exception.raise_exception;

2219: exception
2220: when no_data_found then
2221: app_exception.raise_exception(exception_text=>
2222: 'Invalid Session Id ');
2223: app_exception.raise_exception;
2224: when others then
2225: fnd_message.set_name('FND', 'SQL_PLSQL_ERROR');
2226: fnd_message.set_token('ROUTINE', 'FND_SESSION_MANAGEMENT.isProxySession');
2227: fnd_message.set_token('ERRNO', SQLCODE);

Line 2229: app_exception.raise_exception;

2225: fnd_message.set_name('FND', 'SQL_PLSQL_ERROR');
2226: fnd_message.set_token('ROUTINE', 'FND_SESSION_MANAGEMENT.isProxySession');
2227: fnd_message.set_token('ERRNO', SQLCODE);
2228: fnd_message.set_token('REASON', SQLERRM);
2229: app_exception.raise_exception;
2230: end isProxySession;
2231:
2232: end FND_SESSION_MANAGEMENT;