data : begin of wa, kunnr type kunnr, end of wa, it like table of wa.
select kunnr into table it from kna1 up to 10 rows.
loop at it into wa. write : / wa-kunnr. endloop.
Here 5 customer numbers are displayed.. i want a another new column with adding 100 to each of customer number which is disaplyed from kna1 table .
can anyone solve my problem with codings..
Regards.
Thiru.