<?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 Line Select Button? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-line-select-button/m-p/3738592#M899812</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to write logic to see if that button has been selected or not? I assume that this field that represents this button has an 'X' in it somewhere after it is selected. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Apr 2008 19:25:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-28T19:25:34Z</dc:date>
    <item>
      <title>ALV Line Select Button?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-line-select-button/m-p/3738590#M899810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How would I interrogate that object (select button all the way to the left) in the ALV to see if the line has been selected? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thank-You.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2008 19:16:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-line-select-button/m-p/3738590#M899810</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T19:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Line Select Button?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-line-select-button/m-p/3738591#M899811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check that and choose dispaly..then it will show all the selected records only..&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>Mon, 28 Apr 2008 19:22:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-line-select-button/m-p/3738591#M899811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T19:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Line Select Button?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-line-select-button/m-p/3738592#M899812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to write logic to see if that button has been selected or not? I assume that this field that represents this button has an 'X' in it somewhere after it is selected. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2008 19:25:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-line-select-button/m-p/3738592#M899812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T19:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Line Select Button?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-line-select-button/m-p/3738593#M899813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this coding i had used in one of my program..here i want to print the selected smart forms only....hope it clears your doubt..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  USER_COMMAND&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM&lt;/P&gt;&lt;P&gt;                        R_SELFIELD TYPE SLIS_SELFIELD.&lt;/P&gt;&lt;P&gt;  clear : v_flag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE R_UCOMM.&lt;/P&gt;&lt;P&gt;    WHEN 'DATA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP AT IT_TEMP.&lt;/P&gt;&lt;P&gt;     if it_temp-checkbox =  'X'.&lt;/P&gt;&lt;P&gt;          v_flag = 'X'.&lt;/P&gt;&lt;P&gt;          v_pernr1 = IT_TEMP-PERNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Get compensation data and populate final internal table&lt;/P&gt;&lt;P&gt;          refresh it_fin.&lt;/P&gt;&lt;P&gt;          CALL FUNCTION 'Z_HR_COMP_STATEMENT'&lt;/P&gt;&lt;P&gt;            EXPORTING&lt;/P&gt;&lt;P&gt;              PERNR = v_pernr1&lt;/P&gt;&lt;P&gt;              BEGDA = s_date-low&lt;/P&gt;&lt;P&gt;              ENDDA = s_date-high&lt;/P&gt;&lt;P&gt;            TABLES&lt;/P&gt;&lt;P&gt;              FINAL = it_fin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          if not it_fin[] is initial.&lt;/P&gt;&lt;P&gt;            delete adjacent duplicates from  it_fin comparing pernr.&lt;/P&gt;&lt;P&gt;            read table it_fin index 1.&lt;/P&gt;&lt;P&gt;            move-corresponding it_fin to it_final.&lt;/P&gt;&lt;P&gt;            append it_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            clear it_final.&lt;/P&gt;&lt;P&gt;          endif.&lt;/P&gt;&lt;P&gt;        endif.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     enddo.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;      if not v_flag is initial.&lt;/P&gt;&lt;P&gt;*------ display final data&lt;/P&gt;&lt;P&gt;        PERFORM final_display.&lt;/P&gt;&lt;P&gt;      else.&lt;/P&gt;&lt;P&gt;        message s000 with 'Select atleast one pernr'.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;  endcase.&lt;/P&gt;&lt;P&gt;ENDFORM.                    "USER_COMMAND&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>Mon, 28 Apr 2008 19:32:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-line-select-button/m-p/3738593#M899813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T19:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Line Select Button?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-line-select-button/m-p/3738594#M899814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In order to extract the selected row in ALV,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; READ TABLE &amp;lt;itab&amp;gt; WITH KEY ln = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sheel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2008 19:55:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-line-select-button/m-p/3738594#M899814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T19:55:23Z</dc:date>
    </item>
  </channel>
</rss>

