513: fetch c into recinfo;
514: if (c%notfound) then
515: close c;
516: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
517: app_exception.raise_exception;
518: end if;
519: close c;
520: if ( ((recinfo.ESTIMATED_PRICE = X_ESTIMATED_PRICE)
521: OR ((recinfo.ESTIMATED_PRICE is null) AND (X_ESTIMATED_PRICE is null)))
613: ) then
614: null;
615: else
616: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
617: app_exception.raise_exception;
618: end if;
619:
620: for tlinfo in c1 loop
621: if (tlinfo.BASELANG = 'Y') then
626: ) then
627: null;
628: else
629: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
630: app_exception.raise_exception;
631: end if;
632: end if;
633: end loop;
634: return;