DBA Data[Home] [Help]

APPS.AS_SALES_STAGES_PKG dependencies on APP_EXCEPTION

Line 219: app_exception.raise_exception;

215: fetch c into recinfo;
216: if (c%notfound) then
217: close c;
218: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
219: app_exception.raise_exception;
220: end if;
221: close c;
222: if ( ((recinfo.USAGE_INDICATOR = X_USAGE_INDICATOR)
223: OR ((recinfo.USAGE_INDICATOR is null) AND (X_USAGE_INDICATOR is null)))

Line 269: app_exception.raise_exception;

265: ) then
266: null;
267: else
268: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
269: app_exception.raise_exception;
270: end if;
271:
272: for tlinfo in c1 loop
273: if (tlinfo.BASELANG = 'Y') then

Line 281: app_exception.raise_exception;

277: ) then
278: null;
279: else
280: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
281: app_exception.raise_exception;
282: end if;
283: end if;
284: end loop;
285: return;