DBA Data[Home] [Help]

APPS.JTF_NOTES_PKG dependencies on APP_EXCEPTION

Line 235: app_exception.raise_exception;

231: fetch c into recinfo;
232: if (c%notfound) then
233: close c;
234: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
235: app_exception.raise_exception;
236: end if;
237: close c;
238: if ( (recinfo.SOURCE_OBJECT_CODE = X_SOURCE_OBJECT_CODE)
239: AND ((recinfo.NOTE_STATUS = X_NOTE_STATUS)

Line 284: app_exception.raise_exception;

280: ) then
281: null;
282: else
283: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
284: app_exception.raise_exception;
285: end if;
286: for tlinfo in c1 loop
287: if (tlinfo.BASELANG = 'Y') then
288: if (tlinfo.NOTES = X_NOTES) then

Line 296: app_exception.raise_exception;

292: )then */
293: null;
294: else
295: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
296: app_exception.raise_exception;
297: end if;
298: end if;
299: end loop;
300: return;