218: fetch c into recinfo;
219: if (c%notfound) then
220: close c;
221: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
222: app_exception.raise_exception;
223: end if;
224: close c;
225: if (
226: ((recinfo.CONSTRAINT_REV_ID = X_CONSTRAINT_REV_ID)
280: ) then
281: null;
282: else
283: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
284: app_exception.raise_exception;
285: end if;
286:
287: return;
288: end LOCK_ROW;