DBA Data[Home] [Help]

APPS.IEU_UWQ_MACTION_DEFS_SEED_PKG dependencies on APP_EXCEPTION

Line 332: app_exception.raise_exception;

328: fetch c into recinfo;
329: if (c%notfound) then
330: close c;
331: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
332: app_exception.raise_exception;
333: end if;
334: close c;
335: if ( (recinfo.ACTION_PROC = X_ACTION_PROC)
336: AND ( (recinfo.ACTION_PROC_TYPE_CODE = X_ACTION_PROC_TYPE_CODE) OR

Line 347: app_exception.raise_exception;

343: ) then
344: null;
345: else
346: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
347: app_exception.raise_exception;
348: end if;
349:
350: for tlinfo in c1 loop
351: 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;