152: open c;
153: fetch c into recinfo;
154: if (c%notfound) then
155: close c;
156: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
157: app_exception.raise_exception;
158: end if;
159: close c;
160: if ( (recinfo.RULE_ID = X_RULE_ID)
195: OR ((recinfo.ATTRIBUTE15 is null) AND (X_ATTRIBUTE15 is null)))
196: ) then
197: null;
198: else
199: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
200: app_exception.raise_exception;
201: end if;
202:
203: end LOCK_ROW;