<?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 scroll problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scroll-problem/m-p/6465870#M1416309</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;you need to write the below code in PBO of the screen containing the table control&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : lines type numc.&lt;/P&gt;&lt;P&gt;clear lines.&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE &amp;lt;internal table linked to table control&amp;gt; LINES lines.&lt;/P&gt;&lt;P&gt;&amp;lt;tablecontrolname&amp;gt;-lines = lines + 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Sakshi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Sep 2010 08:51:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-09-29T08:51:19Z</dc:date>
    <item>
      <title>table control scroll problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scroll-problem/m-p/6465866#M1416305</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 created a tables control  in my program,  i am not able to enter more then 8  rows in the table , please any one help me to enable the vertical scroll bar in my table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;praveen k&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2010 07:20:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scroll-problem/m-p/6465866#M1416305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-18T07:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: table control scroll problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scroll-problem/m-p/6465867#M1416306</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;try this &lt;/P&gt;&lt;P&gt;    DESCRIBE TABLE lt_ekko1 LINES lv_line.&lt;/P&gt;&lt;P&gt;    tc-lines = lv_line + 10.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2010 07:33:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scroll-problem/m-p/6465867#M1416306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-18T07:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: table control scroll problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scroll-problem/m-p/6465868#M1416307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it depends upon number of entries in your internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are creating a new entry then,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append intial line to itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then take the total lines of internal table and set it to the LINES property of table control.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2010 08:37:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scroll-problem/m-p/6465868#M1416307</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-01-18T08:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: table control scroll problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scroll-problem/m-p/6465869#M1416308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try giving value to these attributes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*******Under the describe table lines statement give the no.of lines you want to be open for entry. &lt;/P&gt;&lt;P&gt;module tc_z9501_change_tc_attr output.&lt;/P&gt;&lt;P&gt;  describe table it_z9501 lines tc_z9501-lines.&lt;/P&gt;&lt;P&gt;  tc_z9501-lines = 30."----&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&amp;gt;add this line to open 30 lines for input&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Sep 2010 08:46:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scroll-problem/m-p/6465869#M1416308</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-29T08:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: table control scroll problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scroll-problem/m-p/6465870#M1416309</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;you need to write the below code in PBO of the screen containing the table control&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : lines type numc.&lt;/P&gt;&lt;P&gt;clear lines.&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE &amp;lt;internal table linked to table control&amp;gt; LINES lines.&lt;/P&gt;&lt;P&gt;&amp;lt;tablecontrolname&amp;gt;-lines = lines + 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Sakshi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Sep 2010 08:51:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-scroll-problem/m-p/6465870#M1416309</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-29T08:51:19Z</dc:date>
    </item>
  </channel>
</rss>

