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.strategy_id = x_strategy_id)
258:
259: ) THEN
260: NULL;
261: ELSE
262: fnd_message.set_name('FND','FORM_RECORD_CHANGED');
263: app_exception.raise_exception;
264: END IF;
265: END LOCK_ROW;
266: --