110: open C1;
111: fetch c1 into tlinfo;
112: if (c1%notfound) then
113: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
114: app_exception.raise_exception;
115: close c1;
116: return;
117: end if;
118: close c1;
139: ) then
140: null;
141: else
142: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
143: app_exception.raise_exception;
144: end if;
145: return;
146: end LOCK_ROW;
147: