<?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 Scrolling problem in Table Control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/scrolling-problem-in-table-control/m-p/6441534#M1412404</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created module pool with table control. I have one problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When we start the run the program only first 10 lines are visible to user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When user enters 10 entries and press the ENTER key in table control the first five entries should be hide and at  the five blank lines visible for user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please tell me how to implement this logic?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advace.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Dec 2009 06:12:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-04T06:12:04Z</dc:date>
    <item>
      <title>Scrolling problem in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scrolling-problem-in-table-control/m-p/6441534#M1412404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created module pool with table control. I have one problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When we start the run the program only first 10 lines are visible to user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When user enters 10 entries and press the ENTER key in table control the first five entries should be hide and at  the five blank lines visible for user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please tell me how to implement this logic?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advace.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2009 06:12:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scrolling-problem-in-table-control/m-p/6441534#M1412404</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-04T06:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: Scrolling problem in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scrolling-problem-in-table-control/m-p/6441535#M1412405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ruchit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;In PBO,

MODULE STATUS_100.

LOOP AT ITAB WITH CONTROL TC.
ENDLOOP.

in Program.

MODULE status_100.
DESCRIBE TABLE ITAB LINES tc-lines.
IF tc-lines = 0.
tc-lines = 10.
ELSE.
tc-lines = tc-lines + 5.
ENDIF.
ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheerz&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2009 06:26:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scrolling-problem-in-table-control/m-p/6441535#M1412405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-04T06:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: Scrolling problem in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scrolling-problem-in-table-control/m-p/6441536#M1412406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In PBO, check the number of lines that are to be diplayed in the internal table.&lt;/P&gt;&lt;P&gt;IF all are initial then diplay all the 10 lines else display 5 blank lines more. use tc-lines variable fot his.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you understand it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2009 06:48:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scrolling-problem-in-table-control/m-p/6441536#M1412406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-04T06:48:01Z</dc:date>
    </item>
  </channel>
</rss>

