<?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 Module pool -  Table Control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-control/m-p/1729114#M317619</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The thing is and i hope i can be clear enough &lt;/P&gt;&lt;P&gt;is that i only need 1 line to be selected that is why in te properties the radio button selected is single select /(NO muiltiselect line)&lt;/P&gt;&lt;P&gt;situation 1. i check 1 line, and then another one if there are both focus. first line is dismark and the second one is mark... CORRECT.&lt;/P&gt;&lt;P&gt;situation 2 i check 1 line and then i scrool down in order to make out of focus the marked line. and then i check another line. if i s crooll again to first line this one still mark.. so i have 2 lines mark.&lt;/P&gt;&lt;P&gt;is this clear?. if not let me know and ill see to make more clear..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Dec 2006 17:57:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-20T17:57:48Z</dc:date>
    <item>
      <title>Module pool -  Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-control/m-p/1729114#M317619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The thing is and i hope i can be clear enough &lt;/P&gt;&lt;P&gt;is that i only need 1 line to be selected that is why in te properties the radio button selected is single select /(NO muiltiselect line)&lt;/P&gt;&lt;P&gt;situation 1. i check 1 line, and then another one if there are both focus. first line is dismark and the second one is mark... CORRECT.&lt;/P&gt;&lt;P&gt;situation 2 i check 1 line and then i scrool down in order to make out of focus the marked line. and then i check another line. if i s crooll again to first line this one still mark.. so i have 2 lines mark.&lt;/P&gt;&lt;P&gt;is this clear?. if not let me know and ill see to make more clear..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 17:57:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-control/m-p/1729114#M317619</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T17:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool -  Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-control/m-p/1729115#M317620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please refer to NOTE 588284&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 18:25:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-control/m-p/1729115#M317620</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T18:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool -  Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-control/m-p/1729116#M317621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Diego,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To clarify further, in the PAI module - do something like this:&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 Tc1.&lt;/P&gt;&lt;P&gt;   module MoveChosen.&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; MODULE USER_COMMAND_0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;******************&lt;/P&gt;&lt;P&gt;MODULE MOVECHOSEN INPUT.&lt;/P&gt;&lt;P&gt;  if Tc1-chosen = 'X'.&lt;/P&gt;&lt;P&gt;    Tc1-chosen = 'X'.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    clear Tc1-chosen.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;  modify Tc1 index tablecontrol1-current_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " MOVECHOSEN  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_0100 INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  case sy-ucomm.&lt;/P&gt;&lt;P&gt;    when 'ORDER'.        " Go to the selected Order&lt;/P&gt;&lt;P&gt;      clear sy-ucomm.&lt;/P&gt;&lt;P&gt;      Proceed = 'N'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Perform CheckTc1.&lt;/P&gt;&lt;P&gt;      if Proceed = 'N'.&lt;/P&gt;&lt;P&gt;        message i000 with 'Please select one line only.'.&lt;/P&gt;&lt;P&gt;        exit.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**************************&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;In a FORMS Include.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Form checktc1.&lt;/P&gt;&lt;P&gt;  thecntr = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at tc1.&lt;/P&gt;&lt;P&gt;    if tc1-chosen = 'X'.&lt;/P&gt;&lt;P&gt;      thecntr = thecntr + 1.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if thecntr = 0&lt;/P&gt;&lt;P&gt;  or thecntr = 1.&lt;/P&gt;&lt;P&gt;    proceed = 'Y'.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.                                                    "CheckTc1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 18:30:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-control/m-p/1729116#M317621</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T18:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool -  Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-control/m-p/1729117#M317622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Diego,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you resolved your issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so, please reward points accordingly. If not, please clarify your issue further.&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, 20 Dec 2006 19:35:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-table-control/m-p/1729117#M317622</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T19:35:09Z</dc:date>
    </item>
  </channel>
</rss>

