205: fetch c into recinfo;
206: if (c%notfound) then
207: close c;
208: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
209: app_exception.raise_exception;
210: end if;
211: close c;
212: if ( ((recinfo.ATTRIBUTE12 = X_ATTRIBUTE12)
213: OR ((recinfo.ATTRIBUTE12 is null) AND (X_ATTRIBUTE12 is null)))
254: ) then
255: null;
256: else
257: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
258: app_exception.raise_exception;
259: end if;
260:
261: for tlinfo in c1 loop
262: if (tlinfo.BASELANG = 'Y') then
265: ) then
266: null;
267: else
268: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
269: app_exception.raise_exception;
270: end if;
271: end if;
272: end loop;
273: return;