DBA Data[Home] [Help]

APPS.FND_CONCURRENT_PROGRAMS_PKG dependencies on APP_EXCEPTION

Line 331: app_exception.raise_exception;

327: fetch c into recinfo;
328: if (c%notfound) then
329: close c;
330: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
331: app_exception.raise_exception;
332: end if;
333: close c;
334: if ( (recinfo.CONCURRENT_PROGRAM_NAME = X_CONCURRENT_PROGRAM_NAME)
335: AND (recinfo.EXECUTABLE_APPLICATION_ID = X_EXECUTABLE_APPLICATION_ID)

Line 411: app_exception.raise_exception;

407: ) then
408: null;
409: else
410: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
411: app_exception.raise_exception;
412: end if;
413:
414: for tlinfo in c1 loop
415: if (tlinfo.BASELANG = 'Y') then

Line 423: app_exception.raise_exception;

419: ) then
420: null;
421: else
422: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
423: app_exception.raise_exception;
424: end if;
425: end if;
426: end loop;
427: return;