176: open c_budgets;
177: fetch c_budgets into tlinfo;
178: if (c_budgets%notfound) then
179: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
180: app_exception.raise_exception;
181: close c_budgets;
182: return;
183: end if;
184: close c_budgets;
271: ) then
272: null;
273: else
274: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
275: app_exception.raise_exception;
276: end if;
277: return;
278: end lock_row;
279: