hi,
I'm newbie in dynamic table.
I have 1 internal table called ta_output as defined below:
data : begin of ta_ouput occurs 0,
rowPos(10) type i,
colPos(10) type i,
level(1) type i,
text(200) type c,
end of ta_output.
Ta_OUTPUT has been populated like below:
rowPos colPos level text
1 1 A Shop
1 2 A Condominium
1 3 A School
2 1 B 100
2 2 B 5
2 3 B 12
3 1 B 40
3 2 B 16
3 3 B 10
4 1 B 0
4 2 B 25
4 3 B 7
How to populate dynamic listing like below using that ta_output:
Shop Condominium School
100 5 12
40 16 10
0 25 7