<?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 SELECT ALL , DESELECT ALL functionality in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-deselect-all-functionality/m-p/1750839#M325565</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;I am using AL_LIST_DISPLAY FM to display output. I have added selecta all and deselect all buttons to the application tool bar. &lt;/P&gt;&lt;P&gt;Output contains the checkboxes and if i press selall i need to select all the records and vice versa. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am handling code in user_command.&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;When 'SAL'.&lt;/P&gt;&lt;P&gt;itab-chbox = 'X'.&lt;/P&gt;&lt;P&gt;modify chkbox where chbox = ' '.&lt;/P&gt;&lt;P&gt;sy-lsind = 0.&lt;/P&gt;&lt;P&gt;perform display_data.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But select all and deselct all functionality is not still working.&lt;/P&gt;&lt;P&gt;Selecting all checkboxes but when i press back..its going to the previous list,&lt;/P&gt;&lt;P&gt;its not coming to basic list. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one pls help with SAL and DSAL functionality with ALV using functionmodule not by using grid_containers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Dec 2006 10:18:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-08T10:18:50Z</dc:date>
    <item>
      <title>SELECT ALL , DESELECT ALL functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-deselect-all-functionality/m-p/1750839#M325565</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;I am using AL_LIST_DISPLAY FM to display output. I have added selecta all and deselect all buttons to the application tool bar. &lt;/P&gt;&lt;P&gt;Output contains the checkboxes and if i press selall i need to select all the records and vice versa. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am handling code in user_command.&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;When 'SAL'.&lt;/P&gt;&lt;P&gt;itab-chbox = 'X'.&lt;/P&gt;&lt;P&gt;modify chkbox where chbox = ' '.&lt;/P&gt;&lt;P&gt;sy-lsind = 0.&lt;/P&gt;&lt;P&gt;perform display_data.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But select all and deselct all functionality is not still working.&lt;/P&gt;&lt;P&gt;Selecting all checkboxes but when i press back..its going to the previous list,&lt;/P&gt;&lt;P&gt;its not coming to basic list. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one pls help with SAL and DSAL functionality with ALV using functionmodule not by using grid_containers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2006 10:18:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-deselect-all-functionality/m-p/1750839#M325565</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-08T10:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT ALL , DESELECT ALL functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-deselect-all-functionality/m-p/1750840#M325566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can refresh the ALV in the user_call_back routine. This user_call_back routine is the form where you usually operate the user commands&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM handle_ucomm USING r_ucomm LIKE sy-ucomm&lt;/P&gt;&lt;P&gt;                        r_selfld TYPE slis_selfield.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE r_ucomm.&lt;/P&gt;&lt;P&gt; WHEN 'SELECT ALL'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   modify data internal table .&lt;/P&gt;&lt;P&gt;  r_selfld-refresh = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2006 13:27:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-deselect-all-functionality/m-p/1750840#M325566</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-08T13:27:03Z</dc:date>
    </item>
  </channel>
</rss>

