<?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: Problems with ALV - 1 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-alv-1/m-p/846800#M45406</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;I have already referd the said examples and the links and then only I posted the message here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;pM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Jun 2005 12:02:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-06-02T12:02:43Z</dc:date>
    <item>
      <title>Problems with ALV - 1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-alv-1/m-p/846795#M45401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;In my ALV editing program I want to show the summation of the figures, so I am handling the data_changed event but it does not work and instead of replacing the summation fig. it simple replaces that cell with blanks ( I am using modify_cell method) ??? can't make out the why it is happening?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in anticipation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2005 10:44:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-alv-1/m-p/846795#M45401</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-02T10:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with ALV - 1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-alv-1/m-p/846796#M45402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI , &lt;/P&gt;&lt;P&gt;    I hope you want to display the total at the bottom of alv grid/ list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Following code helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type-pools : slis.&lt;/P&gt;&lt;P&gt;  data    FLD_LAY TYPE SLIS_LAYOUT_ALV.&lt;/P&gt;&lt;P&gt;*this is field catalog building there u specify this.&lt;/P&gt;&lt;P&gt;FLD-DO_SUM = ABAP_TRUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FLD_LAY-TOTALS_TEXT = 'TOTAL=&amp;gt;'.&lt;/P&gt;&lt;P&gt;FLD_LAY-LIST_APPEND = ''.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dilip&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2005 10:51:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-alv-1/m-p/846796#M45402</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-02T10:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with ALV - 1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-alv-1/m-p/846797#M45403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to update the column of the totals by adding all the cells of that row and I am not using functions but methods.&lt;/P&gt;&lt;P&gt;Here is my line of code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD rr_data_changed-&amp;gt;modify_cell&lt;/P&gt;&lt;P&gt;                  EXPORTING i_row_id = ls_mod_cells-row_id&lt;/P&gt;&lt;P&gt;                            i_fieldname = 'TOTALFV'&lt;/P&gt;&lt;P&gt;                            i_value     = temp_total1.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;pM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2005 11:02:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-alv-1/m-p/846797#M45403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-02T11:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with ALV - 1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-alv-1/m-p/846798#M45404</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;Check this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_basic.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_basic.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2005 11:09:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-alv-1/m-p/846798#M45404</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-06-02T11:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with ALV - 1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-alv-1/m-p/846799#M45405</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;Check this regarding editable ALV grid&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/alv/alvscr.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/alv/alvscr.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BCALV_EDIT_01 This report illustrates the simplest case of using an editable/noneditable ALV Grid Control.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;BCALV_EDIT_02 This report illustrates how to set chosen cells of an ALV Grid Control editable.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Judith.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2005 11:18:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-alv-1/m-p/846799#M45405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-02T11:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with ALV - 1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-alv-1/m-p/846800#M45406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;I have already referd the said examples and the links and then only I posted the message here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;pM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2005 12:02:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-alv-1/m-p/846800#M45406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-02T12:02:43Z</dc:date>
    </item>
  </channel>
</rss>

