DBA Data[Home] [Help]

APPS.ZX_FC_CODES_PKG dependencies on FND_MESSAGE

Line 438: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');

434: open c;
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)

Line 502: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

498: AND (recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)
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

Line 511: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

507: if ( (tlinfo.CLASSIFICATION_NAME = X_CLASSIFICATION_NAME)
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;