Code: Alles auswählen.
DO.
index = sy-index.
ASSIGN component index of struc1 TO <fs1>.
IF sy-subrc <> 0.
EXIT.
ENDIF.
ASSIGN component of struc2 TO <fs2>.
IF index > anzahl_nicht_vergleichen.
IF <fs1> <> <fs2>.
* hier ist ein Unterschied.
ENDIF.
ENDIF.
ENDDO.