<?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: Table control- on click in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-click/m-p/3507631#M843659</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 09 Mar 2008 11:10:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-09T11:10:22Z</dc:date>
    <item>
      <title>Table control- on click</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-click/m-p/3507626#M843654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have developed a table control with selection column in module pool programming with single line selection attribute and named that selection column as 'mark'. Now, how can I capture which row is selected from the table control as I want to enter that row in some work area having same structure.&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, 05 Mar 2008 13:17:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-click/m-p/3507626#M843654</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T13:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: Table control- on click</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-click/m-p/3507627#M843655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohit&lt;/P&gt;&lt;P&gt;1.in your internal table add one new field called 'mark'.&lt;/P&gt;&lt;P&gt;2.in the screen, table control properties give w/selcolumn as workarea-mark.(your work area name)&lt;/P&gt;&lt;P&gt;3.modify the internal table in your PAI&lt;/P&gt;&lt;P&gt;4.now you can find out which line you selected by looping the internal table and check if wrk_area-mark = 'X'. then you can transfer the current line content to another work area with same structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hop this will help&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shibu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 16:29:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-click/m-p/3507627#M843655</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T16:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: Table control- on click</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-click/m-p/3507628#M843656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use Get Cursor to findout the which record you have selected. and you will be having the same record in the internal table which you are passing to your table control,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so read the internal table with the line number you are getting from the Get Cursor. and put those values in the header line or work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks-&lt;/P&gt;&lt;P&gt;Rahul.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 23:56:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-click/m-p/3507628#M843656</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T23:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: Table control- on click</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-click/m-p/3507629#M843657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when ever you are going to provide the facility of selecting a row in the table control always provide a field  of one character for e.g SEL  in the structure which you want to use for table control.&lt;/P&gt;&lt;P&gt;In screen painter , check the selcol option in table control element and provide the field  workarea-SEL  in that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in the screen logic in PAI  , in any module write the code for selection. for e.g.&lt;/P&gt;&lt;P&gt;Loop at itab where sel = 'X'.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;or suppose you want to delete that record write code as &lt;/P&gt;&lt;P&gt;Delete itab where sel = 'X'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 03:24:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-click/m-p/3507629#M843657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T03:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: Table control- on click</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-click/m-p/3507630#M843658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;  Ur answer was a great help to me..but there is one problem.  &lt;/P&gt;&lt;P&gt;Can u plzz tell me how will the value of mark be moved to wa and how will we move it at runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2008 07:30:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-click/m-p/3507630#M843658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-06T07:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: Table control- on click</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-click/m-p/3507631#M843659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Mar 2008 11:10:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-on-click/m-p/3507631#M843659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-09T11:10:22Z</dc:date>
    </item>
  </channel>
</rss>

