DBA Data[Home] [Help]

APPS.CS_SR_TYPE_CATEGORIES_PKG dependencies on APP_EXCEPTION

Line 206: app_exception.raise_exception;

202: fetch c into recinfo;
203: if (c%notfound) then
204: close c;
205: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
206: app_exception.raise_exception;
207: end if;
208: close c;
209: if ( ((recinfo.DISPLAY_ORDER = X_DISPLAY_ORDER)
210: OR ((recinfo.DISPLAY_ORDER is null) AND (X_DISPLAY_ORDER is null)))

Line 255: app_exception.raise_exception;

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

Line 267: app_exception.raise_exception;

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