<?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 Row wise total using ALV OOPS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266885#M1830768</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;My requirement is to display rowwise sum in ALV .We have option to do column wise sum by setting do_sum field in fieldcatalog. Do we have anything to do rowwise sum?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 May 2014 09:47:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-05-07T09:47:05Z</dc:date>
    <item>
      <title>Row wise total using ALV OOPS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266885#M1830768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;My requirement is to display rowwise sum in ALV .We have option to do column wise sum by setting do_sum field in fieldcatalog. Do we have anything to do rowwise sum?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 09:47:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266885#M1830768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-07T09:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: Row wise total using ALV OOPS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266886#M1830769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Are all fields currency or quantity fields?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 09:49:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266886#M1830769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-07T09:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: Row wise total using ALV OOPS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266887#M1830770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satya,&lt;/P&gt;&lt;P&gt;Yes.They all are currency and quantity fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 09:51:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266887#M1830770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-07T09:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: Row wise total using ALV OOPS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266888#M1830771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi rajan,&lt;/P&gt;&lt;P&gt;Try This code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take another field (TOATL) &amp;lt;type your currencyor quantity fields&amp;gt;&amp;nbsp; in your final internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In data filling loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at &amp;lt;itab&amp;gt; into &amp;lt;wa&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; w_final-f1 = wa-f1.&lt;/P&gt;&lt;P&gt;&amp;nbsp; w_final-f2 = wa-f2.&lt;/P&gt;&lt;P&gt;&amp;nbsp; w_final-f3 = wa-f3.&lt;/P&gt;&lt;P&gt;&amp;nbsp; w_final-f4 = wa-f4.&lt;/P&gt;&lt;P&gt;&amp;nbsp; w_final-f5 = wa-f5.&lt;/P&gt;&lt;P&gt;&amp;nbsp; w_final-total = w_final-f1 + w_final-f2 + w_final-f3 + w_final-f4 + w_final-f5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next display your fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 10:07:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266888#M1830771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-07T10:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: Row wise total using ALV OOPS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266889#M1830772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.u can use field symbol for row wise total .&lt;/P&gt;&lt;P&gt;2.First collect all data in internal table than use field symbol.&lt;/P&gt;&lt;P&gt;syntax: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;FIELD-SYMBOLS&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;&amp;lt;work area&amp;gt; &lt;SPAN class="L0S52"&gt;TYPE&amp;nbsp; table structure&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;LOOP &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AT &lt;/SPAN&gt;internal table&amp;nbsp; &lt;SPAN class="L0S52"&gt;ASSIGNING &amp;lt;work area&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&amp;nbsp;&amp;nbsp; ENDLOOP.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 10:57:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266889#M1830772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-07T10:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: Row wise total using ALV OOPS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266890#M1830773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to do it manually.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create a new column to display total.&lt;/LI&gt;&lt;LI&gt;Loop at your internal table. Calculate the totals and store in the new column.&lt;/LI&gt;&lt;LI&gt;Modify the field catalog and add the total column.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 11:10:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266890#M1830773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-07T11:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: Row wise total using ALV OOPS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266891#M1830774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Ranjan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ALV OOP no particular option(syntax or statement) for row wise total. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use same as procedural oriented code as.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="remarkable-pre-marked" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;loop at it_final into wa_final.&lt;BR /&gt;&lt;BR /&gt;wa_final-f4 = wa_final-f1 + wa_final-f2 + wa_final-f3.&lt;BR /&gt;&lt;BR /&gt;modify it_final from wa_final &lt;/SPAN&gt;&lt;SPAN class="d981tc" style="border-top-color: transparent; border-right-color: transparent; border-left-color: transparent; font-style: inherit; font-family: inherit; text-decoration: underline; color: #009900;"&gt;&lt;SPAN class="remarkable-pre-marked" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;index&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="remarkable-pre-marked" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt; sy-tabix transporing f4.&lt;BR /&gt;&lt;BR /&gt;endloop.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="remarkable-pre-marked" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="remarkable-pre-marked" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="remarkable-pre-marked" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="remarkable-pre-marked" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="remarkable-pre-marked" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="remarkable-pre-marked" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="remarkable-pre-marked" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Abbas.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 11:14:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266891#M1830774</guid>
      <dc:creator>former_member194739</dc:creator>
      <dc:date>2014-05-07T11:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: Row wise total using ALV OOPS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266892#M1830775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Process the data into internal table with one additional filed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 11:25:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266892#M1830775</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-07T11:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Row wise total using ALV OOPS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266893#M1830776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can use alv field catlog user command . put new button on PF -STATUS TOOL BAR .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When User Press Button&amp;nbsp; , Append Field Catlog Stuture dymically and Put Field Symbol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards ,&lt;/P&gt;&lt;P&gt;Anil Singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 11:35:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266893#M1830776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-07T11:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: Row wise total using ALV OOPS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266894#M1830777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as far as I know, you can't set something like do_sum for calculating rowwise sums.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can add another column for the sum to your output structure and create the sum manually:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;s_data&amp;gt; LIKE LINE OF gt_data.&lt;/P&gt;&lt;P&gt;LOOP AT gt_data ASSIGNING &amp;lt;s_data&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;s_data&amp;gt;-total = &amp;lt;s_data&amp;gt;-comp1 + &amp;lt;s_data&amp;gt;-comp2 + &amp;lt;s_data&amp;gt;-comp3.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use a field-symbol here, it will be more performant, if your internal table has many entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you already do a loop at your internal table somewhere before in the programm or you create your internal table row-by-row by appending them, better calculate the sum there to improve performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Claudia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 12:22:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266894#M1830777</guid>
      <dc:creator>claudia_bolch</dc:creator>
      <dc:date>2014-05-07T12:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Row wise total using ALV OOPS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266895#M1830778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ranjan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As of my knowledge, there is no direct method to calculate Row wise totals, I believe. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your requirement is as follow,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Col1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Col2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Col3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Col4&lt;/P&gt;&lt;P&gt;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 6&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 13&lt;/P&gt;&lt;P&gt;4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12 (Col1 + Col2 + Col3)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then before displaying the output just loop the internal table and calculate the Total as above and place that value in last column and modify internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If user doesn't want it by default and he wants to see that whenever he required, just make one default layout without total Column. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If my understanding was wrong, hope you can elaborate your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 15:20:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266895#M1830778</guid>
      <dc:creator>VijayaKrishnaG</dc:creator>
      <dc:date>2014-05-07T15:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: Row wise total using ALV OOPS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266896#M1830779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Thank you all for your reply.I have resolved it now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 04:14:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266896#M1830779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-09T04:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: Row wise total using ALV OOPS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266897#M1830780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz provide solovtion&amp;nbsp; which u did...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 04:48:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266897#M1830780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-09T04:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: Row wise total using ALV OOPS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266898#M1830781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please set the thread's status to &lt;STRONG&gt;anwered&lt;/STRONG&gt; or &lt;STRONG&gt;assumed answered.&lt;/STRONG&gt;.While status is &lt;STRONG&gt;not answered&lt;/STRONG&gt; other SCN members join the thread and want to try to help you solve your &lt;STRONG&gt;open&lt;/STRONG&gt; issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 05:56:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/row-wise-total-using-alv-oops/m-p/10266898#M1830781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-09T05:56:46Z</dc:date>
    </item>
  </channel>
</rss>

