Skip to Content
0
May 14, 2010 at 07:25 AM

Getting **************** values in Internal Table fields

25 Views

Hi

i have written code, my problem is After appending wa_mseg to it_col1 all the values in the fields are displaying as ************************ only Matnr and Mseg values are displaying correctly...

this problem is coming before diplay only...

clear wa_mseg.
sort it_mseg by matnr.
 loop at IT_MSEG into WA_MSEG.
   at end of matnr.
     sum.
      append WA_MSEG to IT_COL1.
      clear wa_mseg.
  ENDAT.
   endloop.

Please help me to solve this problem

Regards

Smitha