DBA Data[Home] [Help]

APPS.ENG_CHANGE_ACTIONS_PKG dependencies on APP_EXCEPTION

Line 225: app_exception.raise_exception;

221: fetch c into recinfo;
222: if (c%notfound) then
223: close c;
224: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
225: app_exception.raise_exception;
226: end if;
227: close c;
228: if ( ((recinfo.ORIGINAL_SYSTEM_REFERENCE = X_ORIGINAL_SYSTEM_REFERENCE)
229: OR ((recinfo.ORIGINAL_SYSTEM_REFERENCE is null) AND (X_ORIGINAL_SYSTEM_REFERENCE is null)))

Line 279: app_exception.raise_exception;

275: ) then
276: null;
277: else
278: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
279: app_exception.raise_exception;
280: end if;
281:
282: for tlinfo in c1 loop
283: if (tlinfo.BASELANG = 'Y') then

Line 290: app_exception.raise_exception;

286: ) then
287: null;
288: else
289: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
290: app_exception.raise_exception;
291: end if;
292: end if;
293: end loop;
294: return;