DBA Data[Home] [Help]

APPS.PAY_MONETARY_UNITS_PKG dependencies on APP_EXCEPTION

Line 271: app_exception.raise_exception;

267: fetch c into recinfo;
268: if (c%notfound) then
269: close c;
270: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
271: app_exception.raise_exception;
272: end if;
273: close c;
274: if ( (recinfo.CURRENCY_CODE = X_CURRENCY_CODE)
275: AND ((recinfo.BUSINESS_GROUP_ID = X_BUSINESS_GROUP_ID)

Line 286: app_exception.raise_exception;

282: ) then
283: null;
284: else
285: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
286: app_exception.raise_exception;
287: end if;
288:
289: for tlinfo in c1 loop
290: if (tlinfo.BASELANG = 'Y') then

Line 296: app_exception.raise_exception;

292: ) then
293: null;
294: else
295: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
296: app_exception.raise_exception;
297: end if;
298: end if;
299: end loop;
300: return;