Ich brauche die Summe verschiedener Felder (gt_zde~-SOLLSTDAZ, gt_zde~ISTSTDAZ, gt_zde~ueber). Diese Summen möchte ich in eine eigene Struktur gs_uebst_info übernehmen.
loop at gt_zde into gs_zde.
add gs_zde-sollstdaz into gs_uebst_info-sollstdaz.
add gs_zde-iststdaz into gs_uebst_info-iststdaz.
add gs_zde-ueber into gs_uebst_info-ueber.
endloop.