DBA Data[Home] [Help]

APPS.ZX_FC_CODES_PKG dependencies on APP_EXCEPTION

Line 439: app_exception.raise_exception;

435: fetch c into recinfo;
436: if (c%notfound) then
437: close c;
438: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
439: app_exception.raise_exception;
440: end if;
441: close c;
442: if ( (recinfo.Classification_Code = X_Classification_Code)
443: AND (recinfo.CLASSIFICATION_TYPE_CODE = X_CLASSIFICATION_TYPE_CODE)

Line 503: app_exception.raise_exception;

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

Line 512: app_exception.raise_exception;

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