DBA Data[Home] [Help]

APPS.FND_OAM_CHART_GRPS_PKG dependencies on APP_EXCEPTION

Line 266: app_exception.raise_exception;

262: fetch c into recinfo;
263: if (c%notfound) then
264: close c;
265: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
266: app_exception.raise_exception;
267: end if;
268: close c;
269: if ( (recinfo.CHART_GROUP_SHORT_NAME = X_CHART_GROUP_SHORT_NAME)
270: AND ((recinfo.PARENT_GROUP_ID = X_PARENT_GROUP_ID)

Line 277: app_exception.raise_exception;

273: ) then
274: null;
275: else
276: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
277: app_exception.raise_exception;
278: end if;
279:
280: for tlinfo in c1 loop
281: if (tlinfo.BASELANG = 'Y') then

Line 289: app_exception.raise_exception;

285: ) then
286: null;
287: else
288: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
289: app_exception.raise_exception;
290: end if;
291: end if;
292: end loop;
293: return;