DBA Data[Home] [Help]

APPS.FA_CATEGORIES_PKG dependencies on APP_EXCEPTION

Line 374: app_exception.raise_exception;

370: fetch c into recinfo;
371: if (c%notfound) then
372: close c;
373: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
374: app_exception.raise_exception;
375: end if;
376: close c;
377: if ( (recinfo.SUMMARY_FLAG = X_SUMMARY_FLAG)
378: AND (recinfo.ENABLED_FLAG = X_ENABLED_FLAG)

Line 487: app_exception.raise_exception;

483: OR ((recinfo.INVENTORIAL is null) AND (X_INVENTORIAL is null)))) then
484: null;
485: else
486: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
487: app_exception.raise_exception;
488: end if;
489:
490: for tlinfo in c1 loop
491: if (tlinfo.BASELANG = 'Y') then

Line 497: app_exception.raise_exception;

493: OR ((tlinfo.DESCRIPTION is null) AND (X_DESCRIPTION is null)))) then
494: null;
495: else
496: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
497: app_exception.raise_exception;
498: end if;
499: end if;
500: end loop;
501: return;