Code: Alles auswählen.
loop at LT_ALV_OUT assigning <ALV_OUT>
where Spalte 1 co ' 0' and Spalte 2 co ' 0' and Spalte 3 is not initial.
endloop.
Code: Alles auswählen.
loop at LT_ALV_OUT assigning <ALV_OUT>
where Spalte 1 co ' 0' and Spalte 2 co ' 0' and Spalte 3 is not initial.
lv_tabix = sy-tabix - 1.
read table lt_alv_out assigning <alv_out2> index lv_tabix.
concatenate <alv_out>-spalte3 <alv_out2>-spalte3 into <alv_out>-spalte3
separated by ','.
endloop.
Folgende Benutzer bedankten sich beim Autor ralf.wenzel für den Beitrag:
Nadine_2706
Code: Alles auswählen.
loop at LT_ALV_OUT assigning <ALV_OUT>
where Spalte1 co '0' and Spalte2 co '0' and Spalte3 is not initial.
LV_TABIX = SY-TABIX - 1.
read table LT_ALV_OUT assigning <ALV_OUT_2> index LV_TABIX.
concatenate <ALV_OUT_2>-BEMERK <ALV_OUT>-BEMERK into <ALV_OUT_2>-BEMERK
separated by ','.
append LT_ALV_OUT to LS_ALV_OUT.
if LS_ALV_OUT-spalte1 cn ' 0' or LS_ALV_OUT-spalte2 cn ' 0' or
LS_ALV_OUT-spalte3 is not initial.
---> dann lösche
endif.
endloop.
Folgende Benutzer bedankten sich beim Autor ralf.wenzel für den Beitrag:
Nadine_2706