<?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 Selecting record from Tab control. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-record-from-tab-control/m-p/904624#M55884</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your assistance.&lt;/P&gt;&lt;P&gt;I have table control displaying table records.&lt;/P&gt;&lt;P&gt;Now,if customer selects one record from table control then&lt;/P&gt;&lt;P&gt;i want to retrieve that selected record and &lt;/P&gt;&lt;P&gt;update value 'X' to one field of the record &lt;/P&gt;&lt;P&gt;and post this changed record again in table control.&lt;/P&gt;&lt;P&gt;so Incoding i dont know how to retrieve the selected record from table control.&lt;/P&gt;&lt;P&gt;could you please help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Chandra kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Jan 2005 14:02:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-01-13T14:02:05Z</dc:date>
    <item>
      <title>Selecting record from Tab control.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-record-from-tab-control/m-p/904624#M55884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your assistance.&lt;/P&gt;&lt;P&gt;I have table control displaying table records.&lt;/P&gt;&lt;P&gt;Now,if customer selects one record from table control then&lt;/P&gt;&lt;P&gt;i want to retrieve that selected record and &lt;/P&gt;&lt;P&gt;update value 'X' to one field of the record &lt;/P&gt;&lt;P&gt;and post this changed record again in table control.&lt;/P&gt;&lt;P&gt;so Incoding i dont know how to retrieve the selected record from table control.&lt;/P&gt;&lt;P&gt;could you please help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Chandra kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jan 2005 14:02:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-record-from-tab-control/m-p/904624#M55884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-01-13T14:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting record from Tab control.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-record-from-tab-control/m-p/904625#M55885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can take a look at program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;demo_dynpro_tabcont_loop_at&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Flip into change mode with the button at the top and then you can select multiple rows and hit the delete button to delete them from the display.  This should be a good example because the program determines what rows were selected so that it knows which ones to delete.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a nutshell, your table control will have a field called MARK or something like that, and it will have an 'X' in it to identify the rows that were selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please review the demo program and post any followup questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let us know how it goes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jan 2005 14:17:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-record-from-tab-control/m-p/904625#M55885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-01-13T14:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting record from Tab control.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-record-from-tab-control/m-p/904626#M55886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PAI processing of your screen check your selection field and update your record in the internal table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  LOOP AT g_tc_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CHAIN.&lt;/P&gt;&lt;P&gt;      FIELD: line_2000-selfield.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MODULE update_record.&lt;/P&gt;&lt;P&gt;    ENDCHAIN.&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;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jan 2005 14:21:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-record-from-tab-control/m-p/904626#M55886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-01-13T14:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting record from Tab control.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-record-from-tab-control/m-p/904627#M55887</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;-&amp;gt; append field mark(1) to your itab and tc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)  MODIFY tc at pai.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) analyse which line of your tc is marked&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By: loop at itab wherer mark = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jan 2005 14:21:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selecting-record-from-tab-control/m-p/904627#M55887</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-01-13T14:21:19Z</dc:date>
    </item>
  </channel>
</rss>

