DBA Data[Home] [Help]

APPS.FA_LOOKUPS_PKG dependencies on APP_EXCEPTION

Line 206: app_exception.raise_exception;

202: fetch c into recinfo;
203: if (c%notfound) then
204: close c;
205: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
206: app_exception.raise_exception;
207: end if;
208: close c;
209: if ( (recinfo.ENABLED_FLAG = X_ENABLED_FLAG)
210: AND ((recinfo.START_DATE_ACTIVE = X_START_DATE_ACTIVE)

Line 250: app_exception.raise_exception;

246: ) then
247: null;
248: else
249: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
250: app_exception.raise_exception;
251: end if;
252:
253: for tlinfo in c1 loop
254: if (tlinfo.BASELANG = 'Y') then

Line 262: app_exception.raise_exception;

258: ) then
259: null;
260: else
261: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
262: app_exception.raise_exception;
263: end if;
264: end if;
265: end loop;
266: return;