DBA Data[Home] [Help]

APPS.CS_KB_ELEMENT_TYPES_PKG dependencies on APP_EXCEPTION

Line 453: app_exception.raise_exception;

449: fetch c into recinfo;
450: if (c%notfound) then
451: close c;
452: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
453: app_exception.raise_exception;
454: end if;
455: close c;
456: if (
457: ((recinfo.ELEMENT_TYPE_ID = X_ELEMENT_TYPE_ID)

Line 501: app_exception.raise_exception;

497: ) then
498: null;
499: else
500: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
501: app_exception.raise_exception;
502: end if;
503:
504: for tlinfo in c1 loop
505: if (tlinfo.BASELANG = 'Y') then

Line 514: app_exception.raise_exception;

510: ) then
511: null;
512: else
513: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
514: app_exception.raise_exception;
515: end if;
516: end if;
517: end loop;
518: return;