648: fetch c into recinfo;
649: if (c%notfound) then
650: close c;
651: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
652: app_exception.raise_exception;
653: end if;
654: close c;
655: if ( ((recinfo.ATTR_GROUP_TYPE = X_ATTR_GROUP_TYPE)
656: OR ((recinfo.ATTR_GROUP_TYPE is null) AND (X_ATTR_GROUP_TYPE is null)))
664: ) then
665: null;
666: else
667: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
668: app_exception.raise_exception;
669: end if;
670:
671: for tlinfo in c1 loop
672: if (tlinfo.BASELANG = 'Y') then
677: ) then
678: null;
679: else
680: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
681: app_exception.raise_exception;
682: end if;
683: end if;
684: end loop;
685: return;