DBA Data[Home] [Help]

APPS.PA_FIN_PLAN_TYPES_PKG dependencies on APP_EXCEPTION

Line 339: app_exception.raise_exception;

335: ) then
336: null;
337: else
338: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
339: app_exception.raise_exception;
340: end if;
341:
342: for tlinfo in c1 loop
343: if (tlinfo.BASELANG = 'Y') then

Line 351: app_exception.raise_exception;

347: ) then
348: null;
349: else
350: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
351: app_exception.raise_exception;
352: end if;
353: end if;
354: end loop;
355:

Line 364: app_exception.raise_exception;

360: fetch c into recinfo;
361: if (c%notfound) then
362: close c;
363: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
364: app_exception.raise_exception;
365: end if;
366: close c;
367:
368: if recinfo.RECORD_VERSION_NUMBER = X_RECORD_VERSION_NUMBER then

Line 372: app_exception.raise_exception;

368: if recinfo.RECORD_VERSION_NUMBER = X_RECORD_VERSION_NUMBER then
369: null;
370: else
371: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
372: app_exception.raise_exception;
373: end if;
374:
375: return;
376: