180: open c;
181: fetch c into recinfo;
182: if (c%notfound) then
183: close c;
184: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
185: app_exception.raise_exception;
186: end if;
187: close c;
188: if ( ((recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)
228: OR ((recinfo.UPDATABLE is null) AND (X_UPDATABLE is null)))
229: ) then
230: null;
231: else
232: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
233: app_exception.raise_exception;
234: end if;
235:
236: return;