200: fetch c into recinfo;
201: if (c%notfound) then
202: close c;
203: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
204: app_exception.raise_exception;
205: end if;
206: close c;
207: if ( ((recinfo.ZONE_TYPE = X_ZONE_TYPE)
208: OR ((recinfo.ZONE_TYPE is null) AND (X_ZONE_TYPE is null)))
248: ) then
249: null;
250: else
251: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
252: app_exception.raise_exception;
253: end if;
254:
255: for tlinfo in c1 loop
256: if (tlinfo.BASELANG = 'Y') then
260: ) then
261: null;
262: else
263: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
264: app_exception.raise_exception;
265: end if;
266: end if;
267: end loop;
268: return;