DBA Data[Home] [Help]

APPS.FND_OAM_CHARTS_PKG dependencies on APP_EXCEPTION

Line 296: app_exception.raise_exception;

292: fetch c into recinfo;
293: if (c%notfound) then
294: close c;
295: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
296: app_exception.raise_exception;
297: end if;
298: close c;
299: if ( (recinfo.CHART_GROUP_ID = X_CHART_GROUP_ID)
300: AND (recinfo.DISPLAY_ORDER = X_DISPLAY_ORDER)

Line 309: app_exception.raise_exception;

305: ) then
306: null;
307: else
308: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
309: app_exception.raise_exception;
310: end if;
311:
312: for tlinfo in c1 loop
313: if (tlinfo.BASELANG = 'Y') then

Line 320: app_exception.raise_exception;

316: ) then
317: null;
318: else
319: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
320: app_exception.raise_exception;
321: end if;
322: end if;
323: end loop;
324: return;