DBA Data[Home] [Help]

APPS.FND_LOOKUP_TYPES_PKG dependencies on APP_EXCEPTION

Line 250: app_exception.raise_exception;

246: fetch c into recinfo;
247: if (c%notfound) then
248: close c;
249: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
250: app_exception.raise_exception;
251: end if;
252: close c;
253: if ( (recinfo.APPLICATION_ID = X_APPLICATION_ID)
254: AND (recinfo.CUSTOMIZATION_LEVEL = X_CUSTOMIZATION_LEVEL)

Line 259: app_exception.raise_exception;

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

Line 271: app_exception.raise_exception;

267: ) then
268: null;
269: else
270: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
271: app_exception.raise_exception;
272: end if;
273: end if;
274: end loop;
275: return;