Code: Alles auswählen.
lt_tab:
yr sum
1999 5000
2000 6000
2000 7000
2001 5000
2002 2000
1999 9000
2000 3000
2002 6000
Code: Alles auswählen.
jr1 sum jr2 sum jr3 sum jr4 sum
1999 14000 2000 16000 2001 5000 2002 8000
Code: Alles auswählen.
sort lt_tab by jahr.
Loop at t_output into w_output.
loop at lt_tab into w_tab where id = w_output-id
at end of jahr.
w_ausgabe-jr1 = lt_tab-jahr.
w_budget = w_budget + w_prpsbpge-wtjhr.
endat.
w_output-sum = w_budget.
endloop
modify t_ausgabe from w_ausgabe .
endloop.