174: open c;
175: fetch c into recinfo;
176: if (c%notfound) then
177: close c;
178: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
179: app_exception.raise_exception;
180: end if;
181: close c;
182: if ( (recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)
223: OR ((recinfo.ATTRIBUTE15 is null) AND (X_ATTRIBUTE15 is null)))
224: ) then
225: null;
226: else
227: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
228: app_exception.raise_exception;
229: end if;
230: return;
231: end LOCK_ROW;