DBA Data[Home] [Help]

APPS.AS_FORECAST_PROB_PKG dependencies on APP_EXCEPTION

Line 204: app_exception.raise_exception;

200: fetch c into recinfo;
201: if (c%notfound) then
202: close c;
203: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
204: app_exception.raise_exception;
205: end if;
206: close c;
207: if ( ((recinfo.USAGE_INDICATOR = X_USAGE_INDICATOR)
208: OR ((recinfo.USAGE_INDICATOR is null) AND (X_USAGE_INDICATOR 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 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;