[Home] [Help]
201: begin
202: open c1;
203: fetch c1 into tlinfo;
204: if (c1%notfound) then
205: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
206: app_exception.raise_exception;
207: close c1;
208: return;
209: end if;
267:
268: ) then
269: null;
270: else
271: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
272: app_exception.raise_exception;
273: end if;
274: return;
275: end LOCK_ROW;