166: fetch c into recinfo;
167: if (c%notfound) then
168: close c;
169: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
170: app_exception.raise_exception;
171: end if;
172: close c;
173:
174: if ( (rtrim(recinfo.currency_code) = rtrim(X_Currency_Code))
215: ) then
216: null;
217: else
218: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
219: app_exception.raise_exception;
220: end if;
221:
222: end Lock_Row;
223: