<?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: scrolling in table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/scrolling-in-table-control/m-p/2654380#M612054</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We have agood DEMO programs on this one, have a look at the below programs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_TABLE_CONTROL_1&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_TABLE_CONTROL_2&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; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Aug 2007 06:39:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-09T06:39:22Z</dc:date>
    <item>
      <title>scrolling in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scrolling-in-table-control/m-p/2654379#M612053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when table control is populated i am selecting the check then it is populated in internal table but as i scroll the check is deselected automaticlay,even in the internal table it is deselected.this i came to know through debugging..&lt;/P&gt;&lt;P&gt;so i want to have the check even after i scroll.&lt;/P&gt;&lt;P&gt;pls help me.&lt;/P&gt;&lt;P&gt;it is very urget.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2007 06:33:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scrolling-in-table-control/m-p/2654379#M612053</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-09T06:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: scrolling in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scrolling-in-table-control/m-p/2654380#M612054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We have agood DEMO programs on this one, have a look at the below programs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_TABLE_CONTROL_1&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_TABLE_CONTROL_2&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; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2007 06:39:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scrolling-in-table-control/m-p/2654380#M612054</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-09T06:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: scrolling in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scrolling-in-table-control/m-p/2654381#M612055</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;This happens  bcoz When u Scroll vertically in the Table control it will trigger the PAI event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you must modify your internal table in the PAI loop to retain the check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a sample code for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Flow logic:&amp;lt;/b&amp;gt;&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 ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Module SAVE_TABLE_DATA.&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;&amp;lt;b&amp;gt;Module Pool&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Module SAVE_TABLE_DATA input.&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;  &amp;lt;Move the Table control fields to Itab work area&amp;gt;&lt;/P&gt;&lt;P&gt;  WA-CHECK = &amp;lt;SCREEN FIELD CHECK&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;  MODIFY ITAB FROM WA INDEX TABCON-CURRENT_LINE.&amp;lt;/b&amp;gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if Helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2007 06:39:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scrolling-in-table-control/m-p/2654381#M612055</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-08-09T06:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: scrolling in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scrolling-in-table-control/m-p/2654382#M612056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;treye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 06:10:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scrolling-in-table-control/m-p/2654382#M612056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T06:10:14Z</dc:date>
    </item>
  </channel>
</rss>

