227: open c;
228: fetch c into recinfo;
229: if (c%notfound) then
230: close c;
231: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
232: app_exception.raise_exception;
233: end if;
234: close c;
235: if ( (recinfo.PLACEMENT_ID = X_PLACEMENT_ID)
283: OR ((recinfo.CONTENT_TYPE_CODE is null) AND (X_CONTENT_TYPE_CODE is null)))
284: ) then
285: null;
286: else
287: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
288: app_exception.raise_exception;
289: end if;
290:
291: for tlinfo in c1 loop
294: OR ((tlinfo.PLACEMENT_MP_TITLE is null) AND (X_PLACEMENT_MP_TITLE is null))
295: ) then
296: null;
297: else
298: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
299: app_exception.raise_exception;
300: end if;
301: end if;
302: end loop;