DBA Data[Home] [Help]

APPS.FND_DEBUG_OPTION_VALUES_PKG dependencies on APP_EXCEPTION

Line 239: app_exception.raise_exception;

235: fetch c into recinfo;
236: if (c%notfound) then
237: close c;
238: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
239: app_exception.raise_exception;
240: end if;
241: close c;
242: if ( ((recinfo.TRACE_FILE_ROUTINE = X_TRACE_FILE_ROUTINE)
243: OR ((recinfo.TRACE_FILE_ROUTINE is null) AND (X_TRACE_FILE_ROUTINE is null)))

Line 256: app_exception.raise_exception;

252: ) then
253: null;
254: else
255: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
256: app_exception.raise_exception;
257: end if;
258:
259: for tlinfo in c1 loop
260: if (tlinfo.BASELANG = 'Y') then

Line 266: app_exception.raise_exception;

262: ) then
263: null;
264: else
265: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
266: app_exception.raise_exception;
267: end if;
268: end if;
269: end loop;
270: return;