DBA Data[Home] [Help]

APPS.XTR_DNM_PKG dependencies on APP_EXCEPTION

Line 230: When app_exception.record_lock_exception then

226: End Loop;
227: Close BE;
228:
229: EXCEPTION
230: When app_exception.record_lock_exception then
231: If (xtr_debug_pkg.pg_sqlplus_enable_flag = 1) THEN
232: xtr_debug_pkg.debug('>>XTR_DNM_PKG.UNAUTHORIZE --> Unable to lock records');
233: End If;
234: If (DNM%ISOPEN) then

Line 245: App_Exception.Raise_Exception;

241: FND_MESSAGE.Set_Name ('XTR', 'XTR_DNM_LOCKED');
242: Elsif (l_err_table = 2) then
243: FND_MESSAGE.Set_Name ('XTR', 'XTR_REVAL_EVENT_LOCKED');
244: End If;
245: App_Exception.Raise_Exception;
246: /*
247: When no_data_found then
248: dbms_output.put_line ('no data found exception');
249: If (DNM%ISOPEN) then

Line 274: App_Exception.Raise_Exception;

270: l_err_msg := SQLERRM(l_err_num);
271: FND_MESSAGE.SET_NAME('XTR', 'XTR_UNHANDLED_EXCEPTION');
272: FND_MESSAGE.SET_TOKEN('PROCEDURE', 'XTR_DNM_PKG.Unauthorize');
273: FND_MESSAGE.SET_TOKEN('EVENT', l_err_msg);
274: App_Exception.Raise_Exception;
275: End UNAUTHORIZE;
276:
277: END XTR_DNM_PKG;