<?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: selecting rows in table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-rows-in-table-control/m-p/7222998#M1524073</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sriram.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please do not ask questions in the forums that can be answered by a simple search. Your question has been asked and answered several times before. Please read our rules of engagement before posting in the SCN forums.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jan Stallkamp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Aug 2010 21:13:24 GMT</pubDate>
    <dc:creator>JanStallkamp</dc:creator>
    <dc:date>2010-08-13T21:13:24Z</dc:date>
    <item>
      <title>selecting rows in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-rows-in-table-control/m-p/7222993#M1524068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have question regarding selecting rows in table control. How can I select a row when a button is pressed. I cannot use the selection column in this case. Is there any option to achieve my requirement without using the selection column. Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sriram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Aug 2010 15:11:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-rows-in-table-control/m-p/7222993#M1524068</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-13T15:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: selecting rows in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-rows-in-table-control/m-p/7222994#M1524069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please search in scn or google.&lt;/P&gt;&lt;P&gt;There are lot of materials regarding this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Aug 2010 15:32:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-rows-in-table-control/m-p/7222994#M1524069</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-08-13T15:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: selecting rows in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-rows-in-table-control/m-p/7222995#M1524070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the Get cursor syntax you can achive the Selected row in Table control.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  DATA : selrow TYPE i,
         selindex TYPE i  .

* getting the cursor line in Table Control for selected row
  GET CURSOR FIELD selfield LINE selrow.
  selindex = &amp;lt;tablecontrol&amp;gt;-top_line + selrow - 1.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Aug 2010 15:38:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-rows-in-table-control/m-p/7222995#M1524070</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-13T15:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: selecting rows in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-rows-in-table-control/m-p/7222996#M1524071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Probably you can create a last field LINE_SEL in your table control strucutre and assign it in table control properties at Screen Layout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, when your button get pressed, you can move 'X' to the LINE_SEL field of your desire table row.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Aug 2010 15:50:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-rows-in-table-control/m-p/7222996#M1524071</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-13T15:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: selecting rows in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-rows-in-table-control/m-p/7222997#M1524072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Prabhu, Solved my problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Aug 2010 16:22:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-rows-in-table-control/m-p/7222997#M1524072</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-13T16:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: selecting rows in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-rows-in-table-control/m-p/7222998#M1524073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sriram.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please do not ask questions in the forums that can be answered by a simple search. Your question has been asked and answered several times before. Please read our rules of engagement before posting in the SCN forums.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jan Stallkamp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Aug 2010 21:13:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-rows-in-table-control/m-p/7222998#M1524073</guid>
      <dc:creator>JanStallkamp</dc:creator>
      <dc:date>2010-08-13T21:13:24Z</dc:date>
    </item>
  </channel>
</rss>

