189: fetch c into recinfo;
190: if (c%notfound) then
191: close c;
192: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
193: app_exception.raise_exception;
194: end if;
195: close c;
196: if (
197: (recinfo.billing_rule_line_id = x_billing_rule_line_id)
200: then
201: null;
202: else
203: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
204: app_exception.raise_exception;
205: end if;
206: END IF;
207:
208: return;