sum not working properly abap

Posted by Eva Dias on Stack Overflow See other posts from Stack Overflow or by Eva Dias
Published on 2012-06-18T20:55:36Z Indexed on 2012/06/18 21:16 UTC
Read the original article Hit count: 246

Filed under:
|
|

I'm trying to sum up some values but it keeps giving me weird values. I'm posting the code to help, and an image too of what is happening.

at end of kunnr.    

 soma-waers = <fs_main-waers.
 soma-wrbtr = <fs_main-wrbtr.
 soma-fwste = <fs_main-fwste.
 soma-hwaer = <fs_main-hwaer.
 soma-dmbtr = <fs_main-dmbtr.
 soma-hwste = <fs_main-hwste.
 APPEND soma TO it_soma.  



LOOP AT it_soma INTO soma.
   IF sy-tabix = 1.


     FORMAT COLOR COL_TOTAL INTENSIFIED OFF.
     SUM.
     WRITE: "/ sy-uline(137),
           / sy-vline NO-GAP,
             'Subtotal' NO-GAP,
            '-' NO-GAP,
            soma-waers,
            63 sy-vline NO-GAP,
            64 soma-wrbtr NO-GAP,
            sy-vline NO-GAP,
            soma-fwste NO-GAP,
            sy-vline NO-GAP,
            soma-hwaer NO-GAP,
            sy-vline NO-GAP,
            soma-dmbtr NO-GAP,
            sy-vline NO-GAP,
            soma-hwste NO-GAP,
            sy-vline NO-GAP,
           / sy-uline(137).


   ELSE.
   ENDIF.

 ENDLOOP.

 ENDAT.

enter image description here

© Stack Overflow or respective owner

Related posts about sum

Related posts about sap