Dear All,
I have data in internal table as
Data : begin of itab occurs 0,
os like mseg-erfmg,
gi like mseg-erfmg,
gr like mseg-erfmg,
cs like mseg-erfmg,
budat like mkpf-budat,
end of itab.
and data inside as
date openstock goodissue goodsrecipt closingstock
11.10.05 0 0 200 200
12.10.05 200 10 20 210
12.10.05 210 0 0 210
12.10.05 210 100 0 110
13.10.05 110 50 0 60
now I want to bring data as
date openstock goodissue goodsrecipt closingstock
11.10.05 0 0 200 200
12.10.05 200 110 20 110
13.10.05 110 50 0 60
I want to combine the data of day 12 into a single record .
Regards
Mave