DBA Data[Home] [Help]

APPS.FND_DEBUG_OPTIONS_PKG dependencies on APP_EXCEPTION

Line 337: app_exception.raise_exception;

333: fetch c into recinfo;
334: if (c%notfound) then
335: close c;
336: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
337: app_exception.raise_exception;
338: end if;
339: close c;
340: if ( (recinfo.ENABLED_FLAG = X_ENABLED_FLAG)
341: AND (recinfo.TYPE = X_TYPE)

Line 349: app_exception.raise_exception;

345: ) then
346: null;
347: else
348: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
349: app_exception.raise_exception;
350: end if;
351:
352: for tlinfo in c1 loop
353: if (tlinfo.BASELANG = 'Y') then

Line 359: app_exception.raise_exception;

355: ) then
356: null;
357: else
358: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
359: app_exception.raise_exception;
360: end if;
361: end if;
362: end loop;
363: return;