DBA Data[Home] [Help]

APPS.ZX_FC_TYPES_PKG dependencies on FND_MESSAGE

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

332: open c;
333: fetch c into recinfo;
334: if (c%notfound) then
335: close c;
336: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
337: app_exception.raise_exception;
338: end if;
339: close c;
340: if ( ((recinfo.CLASSIFICATION_TYPE_CODE = X_CLASSIFICATION_TYPE_CODE)

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

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

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

415: OR ((tlinfo.CLASSIFICATION_TYPE_NAME is null) AND (X_CLASSIFICATION_TYPE_NAME is null)))
416: ) then
417: null;
418: else
419: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
420: app_exception.raise_exception;
421: end if;
422: end if;
423: end loop;