755: OPEN c;
756: FETCH c INTO recinfo;
757: IF (c%notfound) THEN
758: CLOSE c;
759: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
760: app_exception.raise_exception;
761: END IF;
762: CLOSE c;
763: IF ( (recinfo.reservation_id = x_reservation_id)
958: /*** End R12 ***/
959: ) THEN
960: NULL;
961: ELSE
962: fnd_message.set_name('FND','FORM_RECORD_CHANGED');
963: app_exception.raise_exception;
964: END IF;
965: END LOCK_ROW;
966: