334: fetch c into recinfo;
335: if (c%notfound) then
336: close c;
337: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
338: app_exception.raise_exception;
339: end if;
340: close c;
341: if ( ((recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)
342: OR ((recinfo.OBJECT_VERSION_NUMBER is null) AND (X_OBJECT_VERSION_NUMBER is null)))
426: ) then
427: null;
428: else
429: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
430: app_exception.raise_exception;
431: end if;
432:
433: for tlinfo in c1 loop
434: if (tlinfo.BASELANG = 'Y') then
444: ) then
445: null;
446: else
447: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
448: app_exception.raise_exception;
449: end if;
450: end if;
451: end loop;
452: return;