DBA Data[Home] [Help]

APPS.FND_PROFILE_OPTIONS_PKG dependencies on APP_EXCEPTION

Line 359: app_exception.raise_exception;

355: fetch c into recinfo;
356: if (c%notfound) then
357: close c;
358: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
359: app_exception.raise_exception;
360: end if;
361: close c;
362: if ( (recinfo.APPLICATION_ID = X_APPLICATION_ID)
363: AND (recinfo.PROFILE_OPTION_ID = X_PROFILE_OPTION_ID)

Line 392: app_exception.raise_exception;

388: ) then
389: null;
390: else
391: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
392: app_exception.raise_exception;
393: end if;
394:
395: open c1;
396: fetch c1 into tlinfo;

Line 410: app_exception.raise_exception;

406: ) then
407: null;
408: else
409: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
410: app_exception.raise_exception;
411: end if;
412:
413: return;
414: