<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: cl_salv_table -  Problem with aggregating rows in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370689#M1993615</link>
    <description>&lt;P&gt;Hi Sandra, thank you for your input!&lt;/P&gt;&lt;P&gt;DMBTR_CS is the data element assigned for the field DMBTR in the table of MSEG (so there shouldn't be any problem with it - I just in case tried with the dmbtr &lt;EM&gt;type mseg-dmbtr&lt;/EM&gt; also - no dice, same result).&lt;/P&gt;&lt;P&gt;The the code should work fine - every documentation and post I went through seem to say so &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; - yet something is missing.&lt;BR /&gt;&lt;BR /&gt;For the layout - I did not define anything else seen from the sample code (nor did I changed it in the GUI). It seems weird, because the total function works when initiated from the button in GUI. &lt;BR /&gt;&lt;BR /&gt;I had a problem with optimizing the columns where &lt;EM&gt;r_column-&amp;gt;set_optimized( 'X' )&lt;/EM&gt; did not do the trick and I had to add the overall optimize for the &lt;EM&gt;r_&lt;/EM&gt;&lt;EM&gt;columns( )-&amp;gt;set_optimize( 'X' ) &lt;/EM&gt;as well - maybe there's something similar missing here with the aggregations (did not find any info on it though).&lt;/P&gt;</description>
    <pubDate>Fri, 22 Jan 2021 12:53:18 GMT</pubDate>
    <dc:creator>mario_maisto</dc:creator>
    <dc:date>2021-01-22T12:53:18Z</dc:date>
    <item>
      <title>cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370686#M1993612</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;Does anyone have a solution to an issue where the row aggregation does not display when using the cl_salv_table's &lt;EM&gt;add_aggregation&lt;/EM&gt; method? I do not get any type of error (e.g. "column not found") - just the totals are not shown, whereas the &lt;EM&gt;add_sort&lt;/EM&gt; method (assigned with a similar style) is working properly. &lt;/P&gt;
  &lt;P&gt;When the table is displayed and I select the corresponding column of &lt;EM&gt;DMBTR&lt;/EM&gt; and press the &lt;EM&gt;total&lt;/EM&gt; button, the totals are shown correctly.&lt;/P&gt;
  &lt;P&gt;&lt;BR /&gt;Here's my sample code -&lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;* x.1 Test
 DATA: BEGIN OF ls,
 lifnr TYPE elifn,
 dmbtr TYPE dmbtr_cs,
 END OF ls,
 lt_table LIKE TABLE OF ls
 .
 SELECT lifnr, dmbtr FROM mseg 
   INTO CORRESPONDING FIELDS OF TABLE @lt_table UP TO 15 ROWS.

 cl_salv_table=&amp;gt;factory( IMPORTING r_salv_table = DATA(lr_result_salv)
 CHANGING t_table = lt_table ).

 lr_result_salv-&amp;gt;get_functions( )-&amp;gt;set_all( 'X' ).
 lr_result_salv-&amp;gt;get_sorts( )-&amp;gt;add_sort( columnname = 'LIFNR' subtotal = 'X' ).
 lr_result_salv-&amp;gt;get_aggregations( )-&amp;gt;add_aggregation( columnname = 'DMBTR' ).

 lr_result_salv-&amp;gt;display( ).&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;The displayed result:&lt;BR /&gt;&lt;IMG alt="" style="font-size: 15px; color: rgb(60, 60, 60);" /&gt;&lt;IMG alt="" style="font-size: 15px; color: rgb(60, 60, 60);" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1878740-is.png" /&gt;&lt;/P&gt;
  &lt;P&gt;Wished result (same as pressing the '&lt;EM&gt;Total&lt;/EM&gt;' button)&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1878741-want.png" /&gt;&lt;/P&gt;
  &lt;P&gt;Am i missing something?&lt;/P&gt;
  &lt;P&gt;Thank you for your help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; !&lt;/P&gt;
  &lt;P&gt;Regards,&lt;BR /&gt;Mario&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 08:24:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370686#M1993612</guid>
      <dc:creator>mario_maisto</dc:creator>
      <dc:date>2021-01-22T08:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370687#M1993613</link>
      <description>&lt;P&gt;Your code should work fine.&lt;/P&gt;&lt;P&gt;What type is data element DMBTR_CS? (you should define it with TYPE MSEG-DMBTR to avoid problems)&lt;/P&gt;&lt;P&gt;Did you define a default layout variant that overwrites the layout defined in your code?&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 12:35:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370687#M1993613</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-01-22T12:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370688#M1993614</link>
      <description>&lt;P&gt; &lt;SPAN class="mention-scrubbed"&gt;sandra.rossi&lt;/SPAN&gt; , check &lt;A href="https://launchpad.support.sap.com/#/notes/2628654"&gt;2628654 - S4TWL: Amount Field Length Extension&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 12:52:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370688#M1993614</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2021-01-22T12:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370689#M1993615</link>
      <description>&lt;P&gt;Hi Sandra, thank you for your input!&lt;/P&gt;&lt;P&gt;DMBTR_CS is the data element assigned for the field DMBTR in the table of MSEG (so there shouldn't be any problem with it - I just in case tried with the dmbtr &lt;EM&gt;type mseg-dmbtr&lt;/EM&gt; also - no dice, same result).&lt;/P&gt;&lt;P&gt;The the code should work fine - every documentation and post I went through seem to say so &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; - yet something is missing.&lt;BR /&gt;&lt;BR /&gt;For the layout - I did not define anything else seen from the sample code (nor did I changed it in the GUI). It seems weird, because the total function works when initiated from the button in GUI. &lt;BR /&gt;&lt;BR /&gt;I had a problem with optimizing the columns where &lt;EM&gt;r_column-&amp;gt;set_optimized( 'X' )&lt;/EM&gt; did not do the trick and I had to add the overall optimize for the &lt;EM&gt;r_&lt;/EM&gt;&lt;EM&gt;columns( )-&amp;gt;set_optimize( 'X' ) &lt;/EM&gt;as well - maybe there's something similar missing here with the aggregations (did not find any info on it though).&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 12:53:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370689#M1993615</guid>
      <dc:creator>mario_maisto</dc:creator>
      <dc:date>2021-01-22T12:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370690#M1993616</link>
      <description>&lt;P&gt;Apparently you need to make a sort to have your subtotal&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sapnuts.com/courses/Object-Oriented-ABAP/alv-factory-method/alv-totals-and-subtotals.html" target="test_blank"&gt;https://www.sapnuts.com/courses/Object-Oriented-ABAP/alv-factory-method/alv-totals-and-subtotals.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 12:58:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370690#M1993616</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2021-01-22T12:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370691#M1993617</link>
      <description>&lt;UL&gt;&lt;LI&gt;Could you perform &lt;A href="https://help.sap.com/viewer/search?q=ALV%20%20Grid%20consistency%20check"&gt;The Consistancy Check&lt;/A&gt; of the ALV grid?&lt;/LI&gt;&lt;LI&gt;Did you recently apply 'Amount Field Length Extension'&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Fri, 22 Jan 2021 12:59:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370691#M1993617</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2021-01-22T12:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370692#M1993618</link>
      <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;raymond.giuseppi&lt;/SPAN&gt; I don't have this extension, so I couldn't know. So I guess that DMBTR_CS has type CURR 23 / 2.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;EM&gt;"In SAP S/4HANA, currency amount fields with a field length between 9-22 including 2 decimals have been extended to 23 digits including 2 decimals."&lt;/EM&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;SPAN class="mention-scrubbed"&gt;mario.maisto&lt;/SPAN&gt; In that case, there must be a bug in the standard code or SAP GUI, search for SAP notes. In my case, I copied your code and it works perfectly well (except that I replaced DMBTR_CS which doesn't exist in my S/4HANA).</description>
      <pubDate>Fri, 22 Jan 2021 13:00:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370692#M1993618</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-01-22T13:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370693#M1993619</link>
      <description>&lt;P&gt;Frederic - but I do, with the line of (You can see the lifnr sorted on my first image 'is.png' &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt; lr_result_salv-&amp;gt;get_sorts()-&amp;gt;add_sort( columnname ='LIFNR' subtotal ='X').&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 13:01:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370693#M1993619</guid>
      <dc:creator>mario_maisto</dc:creator>
      <dc:date>2021-01-22T13:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370694#M1993620</link>
      <description>&lt;P&gt;&lt;A href="https://answers.sap.com/users/1091/sandra.rossi.html"&gt;Sandra Rossi&lt;/A&gt; - so you had the same code, but with dmbtr TYPE mseg-dmbtr ? And it worked?&lt;BR /&gt;I'll try one more time &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 13:05:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370694#M1993620</guid>
      <dc:creator>mario_maisto</dc:creator>
      <dc:date>2021-01-22T13:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370695#M1993621</link>
      <description>&lt;P&gt;Did not work.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 13:12:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370695#M1993621</guid>
      <dc:creator>mario_maisto</dc:creator>
      <dc:date>2021-01-22T13:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370696#M1993622</link>
      <description>&lt;UL&gt;
&lt;LI&gt;Did the check - have some errors.. Can this be the reason ?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;IMG alt="" style="font-size: 15px; color: rgb(51, 51, 51);" /&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1878758-alv-check.png" /&gt;&lt;/P&gt;&lt;UL&gt;
&lt;LI&gt;Have to check.&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Fri, 22 Jan 2021 13:49:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370696#M1993622</guid>
      <dc:creator>mario_maisto</dc:creator>
      <dc:date>2021-01-22T13:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370697#M1993623</link>
      <description>&lt;P&gt;Maybe because MSEG-DMBTR is also based on DMBTR_CS&lt;/P&gt;&lt;P&gt;did you try with a "simple" dmbtr like DMBTRV ?  &lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 14:02:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370697#M1993623</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2021-01-22T14:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370698#M1993624</link>
      <description>&lt;P&gt;Hi &lt;A href="https://answers.sap.com/users/153394/frdric.girod.html"&gt;Frederic&lt;/A&gt;, Thank you for the input - I tried with the element of DMBTRV - did not work.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;If the data type is wrong, shouldn't  it be the same case then when pressing the 'Totals' button manually ?&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 14:06:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370698#M1993624</guid>
      <dc:creator>mario_maisto</dc:creator>
      <dc:date>2021-01-22T14:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370699#M1993625</link>
      <description>&lt;P&gt;I also tried casting with no result..&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT lifnr, CAST( dmbtr AS DEC( 8, 2 ) ) AS dmbtr &lt;BR /&gt;FROM mseg INTO CORRESPONDING FIELDS OF TABLE @lt_table UP TO 15 ROWS.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 Jan 2021 14:09:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370699#M1993625</guid>
      <dc:creator>mario_maisto</dc:creator>
      <dc:date>2021-01-22T14:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370700#M1993626</link>
      <description>&lt;P&gt;Honestly your problem is really strange. &lt;/P&gt;&lt;P&gt;This code works also for me (SAP ECC &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT lifnr, dmbtr FROM mseg
   INTO TABLE @data(lt_table) UP TO 15 ROWS.


 cl_salv_table=&amp;gt;factory( IMPORTING r_salv_table = DATA(lr_result_salv)
 CHANGING t_table = lt_table ).


 lr_result_salv-&amp;gt;get_functions( )-&amp;gt;set_all( 'X' ).
 lr_result_salv-&amp;gt;get_sorts( )-&amp;gt;add_sort( columnname = 'LIFNR' subtotal = 'X' ).
 lr_result_salv-&amp;gt;get_aggregations( )-&amp;gt;add_aggregation( columnname = 'DMBTR' ).


 lr_result_salv-&amp;gt;display( ).&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 Jan 2021 14:13:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370700#M1993626</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2021-01-22T14:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370701#M1993627</link>
      <description>&lt;P&gt;Yes.. strange.&lt;BR /&gt;First I started with a dynamic table definition also with &lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT lifnr, CAST( dmbtr AS DEC( 8, 2 ) ) AS dmbtr FROM mseg &lt;BR /&gt;INTO TABLE @DATA(lt_tablex) UP TO 15 ROWS.&lt;/CODE&gt;&lt;/PRE&gt;.. When this didn't work, I defined a test type before hoping this would solve the issue. It did not. Apparently.&lt;BR /&gt;&lt;BR /&gt;So - it may be a bug in my system then - my sample code seems to work in other systems :P.&lt;BR /&gt;&lt;BR /&gt;Thank you again for your help.</description>
      <pubDate>Fri, 22 Jan 2021 14:19:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370701#M1993627</guid>
      <dc:creator>mario_maisto</dc:creator>
      <dc:date>2021-01-22T14:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370702#M1993628</link>
      <description>&lt;P&gt;Could it be an error in the ALV code itself?&lt;/P&gt;&lt;P&gt;There is a corrective note with a &lt;A href="https://launchpad.support.sap.com/#/notes/2957556" target="_blank"&gt;very interesting description!&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 14:28:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370702#M1993628</guid>
      <dc:creator>abo</dc:creator>
      <dc:date>2021-01-22T14:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370703#M1993629</link>
      <description>&lt;UL&gt;Summary of note 2957556 - ALV-OM: Totals row is not displayed:&lt;/UL&gt;&lt;BR /&gt;&lt;LI&gt;"The ALV is called in the object model (CL_SALV_TABLE). At the interface, aggregations are set for column objects."&lt;/LI&gt;&lt;LI&gt;SAP_BASIS 781&lt;/LI&gt;</description>
      <pubDate>Fri, 22 Jan 2021 17:35:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370703#M1993629</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-01-22T17:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370704#M1993630</link>
      <description>&lt;P&gt;Could you look at f&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Fields definition on MSEG with SE11 (length 13,2 or 23,2) &lt;/LI&gt;&lt;LI&gt;Fields definition in the field catalog  (thru Consustency Check)&lt;/LI&gt;&lt;LI&gt;Do you work in a HANA sandbox, not every module activated?&lt;/LI&gt;&lt;LI&gt;Is somebody testing &lt;A href="https://launchpad.support.sap.com/#/solutions/r/?type=note&amp;amp;route=notes&amp;amp;pos=0&amp;amp;p=%7B%22note%22%3A%222628654%22%7D&amp;amp;searchTerm=Amount%20Field%20Length%20Extension&amp;amp;filters=[]&amp;amp;sorter=score"&gt;2628654 - S4TWL: Amount Field Length Extension&lt;/A&gt;?&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Mon, 25 Jan 2021 08:09:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370704#M1993630</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2021-01-25T08:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: cl_salv_table -  Problem with aggregating rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370705#M1993631</link>
      <description>&lt;P&gt;Hi, im looking into it.&lt;BR /&gt;The field length in mseg for dmbtr is 13,2.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2021 09:02:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cl-salv-table-problem-with-aggregating-rows/m-p/12370705#M1993631</guid>
      <dc:creator>mario_maisto</dc:creator>
      <dc:date>2021-01-25T09:02:49Z</dc:date>
    </item>
  </channel>
</rss>

