<?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 multiple row selection in table control... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-row-selection-in-table-control/m-p/1036565#M85233</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 can select one row from table control and display in a list..&lt;/P&gt;&lt;P&gt;the same thing i want to do for multiple lines...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Oct 2005 08:27:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-10-19T08:27:47Z</dc:date>
    <item>
      <title>multiple row selection in table control...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-row-selection-in-table-control/m-p/1036565#M85233</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 can select one row from table control and display in a list..&lt;/P&gt;&lt;P&gt;the same thing i want to do for multiple lines...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2005 08:27:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-row-selection-in-table-control/m-p/1036565#M85233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-19T08:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: multiple row selection in table control...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-row-selection-in-table-control/m-p/1036566#M85234</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 the table control attributes set selection as multiple&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2005 08:43:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-row-selection-in-table-control/m-p/1036566#M85234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-19T08:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: multiple row selection in table control...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-row-selection-in-table-control/m-p/1036567#M85235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In the table control attributes, there is an option to choose the type of the &amp;lt;b&amp;gt;line selection&amp;lt;/b&amp;gt; ( none, single, multiply).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Svetlin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2005 08:50:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-row-selection-in-table-control/m-p/1036567#M85235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-19T08:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: multiple row selection in table control...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-row-selection-in-table-control/m-p/1036568#M85236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use the table control wizard to create a table control on the screen...while going thru the steps, there will be a screen which asks you about the selection column (this is a single character field in your internal table). on this step there is a selection option for single/multiple selection of rows....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to access the selected records, use...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab where sel eq 'X'.&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;itab&amp;lt;/b&amp;gt; is the underlying internal table for table control and &amp;lt;b&amp;gt;sel&amp;lt;/b&amp;gt; is the name of the selection column&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or if u already have a table control on screen...double click and open the properties window...there u can see radio buttons None, Single and Multiple for line selection. choose the multiple option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;PJ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Priyank Jain&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2005 08:55:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-row-selection-in-table-control/m-p/1036568#M85236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-19T08:55:44Z</dc:date>
    </item>
  </channel>
</rss>

