<?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: ALV PROBLEM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/3502376#M842400</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 guess u mean that the header data is displaying twice or thrice wen u click on save by 'top-of-page event is triggered'. If so, I feel that u havenot cleared ur workarea after appending to the header internal table.&lt;/P&gt;&lt;P&gt;Try clearing it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ramya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Feb 2008 08:40:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-27T08:40:30Z</dc:date>
    <item>
      <title>ALV PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/3502374#M842398</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;in my alv grid display the top-of-page event is getting triggered every time the user-command triggers.when i click on save the top-of-page is getting triggered 3 times when i double click on check box top-of-page getting triggered 2 times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i want the code for select all check boxes.like when u press the select all button the value of all the check boxes should be 'X' i.e the check box is checked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone solve my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;   santosh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 08:17:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/3502374#M842398</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T08:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: ALV PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/3502375#M842399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi do like this...... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; wa_events-name = 'TOP_OF_PAGE'.&lt;/P&gt;&lt;P&gt;  wa_events-form = 'TOP_OF_PAGE'.&lt;/P&gt;&lt;P&gt;  APPEND  wa_events TO it_events.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;W_LAYOUT-BOX_FIELDNAME = 'CHECKBOX'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM fill_cat  USING    value(p_1259)&lt;/P&gt;&lt;P&gt;                        value(p_1260)&lt;/P&gt;&lt;P&gt;                        value(p_1261)&lt;/P&gt;&lt;P&gt;                        value(p_1262) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  w_fieldcat-col_pos = p_1259.&lt;/P&gt;&lt;P&gt;  w_fieldcat-fieldname = p_1260.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if p_1260 = 'CHECKBOX'.&lt;/P&gt;&lt;P&gt;    w_fieldcat-checkbox = 'X'.&lt;/P&gt;&lt;P&gt;    w_fieldcat-edit = 'X'.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  w_fieldcat-tabname = p_1261.&lt;/P&gt;&lt;P&gt;  w_fieldcat-reptext_ddic  = p_1262.&lt;/P&gt;&lt;P&gt;  APPEND w_fieldcat TO t_fieldcat.&lt;/P&gt;&lt;P&gt;  CLEAR w_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 08:32:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/3502375#M842399</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T08:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: ALV PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/3502376#M842400</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 guess u mean that the header data is displaying twice or thrice wen u click on save by 'top-of-page event is triggered'. If so, I feel that u havenot cleared ur workarea after appending to the header internal table.&lt;/P&gt;&lt;P&gt;Try clearing it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ramya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 08:40:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-problem/m-p/3502376#M842400</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T08:40:30Z</dc:date>
    </item>
  </channel>
</rss>

