DBA Data[Home] [Help]

APPS.FND_SESSION_MANAGEMENT dependencies on APP_EXCEPTION

Line 357: app_exception.raise_exception(exception_text=>

353: p_mac_key := null;
354: end if;
355: exception
356: when others then
357: app_exception.raise_exception(exception_text=>
358: 'Invalid Key defined in the profile FND_FIXED_SEC_KEY.' ||
359: ' The key should be a Hexadecimal string of length 64');
360: app_exception.raise_exception;
361: end get_fixed_sec_keys;

Line 360: app_exception.raise_exception;

356: when others then
357: app_exception.raise_exception(exception_text=>
358: 'Invalid Key defined in the profile FND_FIXED_SEC_KEY.' ||
359: ' The key should be a Hexadecimal string of length 64');
360: app_exception.raise_exception;
361: end get_fixed_sec_keys;
362:
363:
364: function createSessionPrivate(p_user_id in number,

Line 2273: app_exception.raise_exception(exception_text=>

2269: session_id = p_session_id;
2270: return user_id;
2271: exception
2272: when no_data_found then
2273: app_exception.raise_exception(exception_text=>
2274: 'Invalid Session Id ');
2275: app_exception.raise_exception;
2276: when others then
2277: fnd_message.set_name('FND', 'SQL_PLSQL_ERROR');

Line 2275: app_exception.raise_exception;

2271: exception
2272: when no_data_found then
2273: app_exception.raise_exception(exception_text=>
2274: 'Invalid Session Id ');
2275: app_exception.raise_exception;
2276: when others then
2277: fnd_message.set_name('FND', 'SQL_PLSQL_ERROR');
2278: fnd_message.set_token('ROUTINE', 'FND_SESSION_MANAGEMENT.isProxySession');
2279: fnd_message.set_token('ERRNO', SQLCODE);

Line 2281: app_exception.raise_exception;

2277: fnd_message.set_name('FND', 'SQL_PLSQL_ERROR');
2278: fnd_message.set_token('ROUTINE', 'FND_SESSION_MANAGEMENT.isProxySession');
2279: fnd_message.set_token('ERRNO', SQLCODE);
2280: fnd_message.set_token('REASON', SQLERRM);
2281: app_exception.raise_exception;
2282: end isProxySession;
2283:
2284: -- *** INTERNAL API to be used by AOL only ***
2285: -- The newSSOSession API is to be used to invalidate/timeout SSO sessions