517: fetch c into recinfo;
518: if (c%notfound) then
519: close c;
520: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
521: app_exception.raise_exception;
522: end if;
523: close c;
524: if ( ((recinfo.ATTRIBUTE15 = X_ATTRIBUTE15)
525: OR ((recinfo.ATTRIBUTE15 is null) AND (X_ATTRIBUTE15 is null)))
692: ) then
693: null;
694: else
695: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
696: app_exception.raise_exception;
697: end if;
698:
699: for tlinfo in c1 loop
700: if (tlinfo.BASELANG = 'Y') then
705: ) then
706: null;
707: else
708: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
709: app_exception.raise_exception;
710: end if;
711: end if;
712: end loop;
713: return;