DBA Data[Home] [Help]

APPS.XDP_UTILITIES dependencies on APP_EXCEPTION

Line 2161: -- Comment out fnd log as app_exception.raise_exception

2157:
2158: -- Modified by SXBANERJ 07/05/2001
2159: -- Procedure to call after raising user defined exception
2160: --
2161: -- Comment out fnd log as app_exception.raise_exception
2162: -- does the logging and it is controlled from a profile option
2163: --
2164: PROCEDURE raise_exception(p_object_type IN VARCHAR2) IS
2165: BEGIN

Line 2171: APP_EXCEPTION.RAISE_EXCEPTION;

2167: fnd_log.message(4
2168: ,p_object_type
2169: ,FALSE);
2170: */
2171: APP_EXCEPTION.RAISE_EXCEPTION;
2172: END raise_exception;
2173:
2174: -- Procedure to call in WHEN OTHERS
2175: PROCEDURE generic_error(p_object_type IN VARCHAR2

Line 2184: -- through APP_EXCEPTION.RAISE_EXCEPTION

2180: e_dummy_exception EXCEPTION;
2181:
2182: BEGIN
2183: IF SQLCODE <> -20001 THEN -- i.e. if procedure is NOT invoked
2184: -- through APP_EXCEPTION.RAISE_EXCEPTION
2185: FND_MESSAGE.SET_NAME('XDP','XDP_UNHANDLED_EXCEPTION'); -- New message
2186: FND_MESSAGE.SET_TOKEN('OBJECT_KEY',p_object_key);
2187: FND_MESSAGE.SET_TOKEN('ERRCODE',p_errcode);
2188: FND_MESSAGE.SET_TOKEN('ERRMSG',p_errmsg);

Line 2194: APP_EXCEPTION.RAISE_EXCEPTION;

2190: fnd_log.message(4
2191: ,p_object_type
2192: ,FALSE);
2193: */
2194: APP_EXCEPTION.RAISE_EXCEPTION;
2195: ELSE
2196: /*
2197: fnd_log.message(4
2198: ,p_object_type

Line 2201: APP_EXCEPTION.RAISE_EXCEPTION;

2197: fnd_log.message(4
2198: ,p_object_type
2199: ,FALSE);
2200: */
2201: APP_EXCEPTION.RAISE_EXCEPTION;
2202: END IF;
2203: END generic_error;
2204:
2205: -- Procedure to write data/text to CLOB from table of records