<?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 SELECT CHECKBOX in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-select-checkbox/m-p/6865892#M1476408</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hemat,&lt;/P&gt;&lt;P&gt;First define &lt;STRONG&gt;gd_layout TYPE slis_layout_alv&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Then set property &lt;STRONG&gt;gd_layout-box_fieldname = 'Checkbox fieldname'&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;It is not required to create the fieldcatalog for the checkbox field and display the checkbox field separately.&lt;/P&gt;&lt;P&gt;Then the user can select all the rows by just clicking the green color icon in the grid or by using F5 function key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 15 May 2010 06:24:55 GMT</pubDate>
    <dc:creator>rvinod1982</dc:creator>
    <dc:date>2010-05-15T06:24:55Z</dc:date>
    <item>
      <title>ALV SELECT CHECKBOX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-select-checkbox/m-p/6865889#M1476405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;I am Displaying itab With checkbox.&lt;/P&gt;&lt;P&gt;In MY itab 150 rows and every Row has a checkBox, I am Using Reuse_Alv_Grid_display.&lt;/P&gt;&lt;P&gt;First user filter the itab with matkl , Then he got 15 row.&lt;/P&gt;&lt;P&gt;The User Requirement is How They Can Selected Multiple Rows(select all)(15 rows) at 1 time , Means Every Check box checked .&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Regards: Heman(A1).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 May 2010 05:56:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-select-checkbox/m-p/6865889#M1476405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-15T05:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: ALV SELECT CHECKBOX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-select-checkbox/m-p/6865890#M1476406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;add a button in the toolbar.&lt;/P&gt;&lt;P&gt;if user presses this button then mark all the check boxes in one go.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 May 2010 06:09:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-select-checkbox/m-p/6865890#M1476406</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2010-05-15T06:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: ALV SELECT CHECKBOX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-select-checkbox/m-p/6865891#M1476407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do this by&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;placing a application toolbar (Using PF-status) and once user clicks the application button in the callback user-command you need to fill the lines check box with X and after don't forget to use refresh = 'X'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FORM f_user_command USING p_ucomm    LIKE sy-ucomm
                          p_selfield TYPE slis_selfield .
    WHEN '&amp;amp;CHK'.
      perform f_checkbox_select. " write your code for checking checkboxes as X here
      p_selfield-refresh = 'X'.  "&amp;lt;&amp;lt;&amp;lt;----- refresh the grid
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 May 2010 06:12:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-select-checkbox/m-p/6865891#M1476407</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2010-05-15T06:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: ALV SELECT CHECKBOX</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-select-checkbox/m-p/6865892#M1476408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hemat,&lt;/P&gt;&lt;P&gt;First define &lt;STRONG&gt;gd_layout TYPE slis_layout_alv&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Then set property &lt;STRONG&gt;gd_layout-box_fieldname = 'Checkbox fieldname'&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;It is not required to create the fieldcatalog for the checkbox field and display the checkbox field separately.&lt;/P&gt;&lt;P&gt;Then the user can select all the rows by just clicking the green color icon in the grid or by using F5 function key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 May 2010 06:24:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-select-checkbox/m-p/6865892#M1476408</guid>
      <dc:creator>rvinod1982</dc:creator>
      <dc:date>2010-05-15T06:24:55Z</dc:date>
    </item>
  </channel>
</rss>

