<?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: can we have auto scroll functionality in table control? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-have-auto-scroll-functionality-in-table-control/m-p/4164924#M995738</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 and check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: N_LINES TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE ITAB LINES N_LINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLE_CONTROL-LINES = N_LINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( Now it will show the Vertical Scrollbar for the table control. )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this would help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Murthy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Jul 2008 06:28:39 GMT</pubDate>
    <dc:creator>former_member787646</dc:creator>
    <dc:date>2008-07-21T06:28:39Z</dc:date>
    <item>
      <title>can we have auto scroll functionality in table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-have-auto-scroll-functionality-in-table-control/m-p/4164920#M995734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table controlw ith 11 rows.&lt;/P&gt;&lt;P&gt;As the user scans the items, the serial numbers start filling into the table control.&lt;/P&gt;&lt;P&gt;Once it reaches 11 rows, they have to press ENTER button to input furhter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we avoid this pressing of any key and allow the scan to continue beyond the 11 rows at a time?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is somewhat like an auto scroll - probably may not be posiible - right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2008 21:25:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-have-auto-scroll-functionality-in-table-control/m-p/4164920#M995734</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-15T21:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: can we have auto scroll functionality in table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-have-auto-scroll-functionality-in-table-control/m-p/4164921#M995735</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;there is a scrolling optoin in a table control. Double click on you table contol in layout editor . now click on the two checkbox ( vertical , horizontal ) below Resizing label. It will create vertical and horizontal scrolling. You can specify the number of lines initialy as 11 and then can create a customized  insert kind of button which will insert a blank row after 11th line . For that. code like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE ITAB INDEX TAB_SCHEDULE-CURRENT_LINE.&lt;/P&gt;&lt;P&gt;  DESCRIBE TABLE ITAB LINES LIN1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-UCOMM = 'ADD' AND LIN1 =11.&lt;/P&gt;&lt;P&gt;APPEND INITIAL LINE TO ITAB.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 04:43:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-have-auto-scroll-functionality-in-table-control/m-p/4164921#M995735</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T04:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: can we have auto scroll functionality in table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-have-auto-scroll-functionality-in-table-control/m-p/4164922#M995736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are going to do an upload BDC it is going to be hectic. It is better for you to go for a BAPI to upload data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 11:12:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-have-auto-scroll-functionality-in-table-control/m-p/4164922#M995736</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T11:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: can we have auto scroll functionality in table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-have-auto-scroll-functionality-in-table-control/m-p/4164923#M995737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rajneesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we automate this button?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 11:53:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-have-auto-scroll-functionality-in-table-control/m-p/4164923#M995737</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T11:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: can we have auto scroll functionality in table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-have-auto-scroll-functionality-in-table-control/m-p/4164924#M995738</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 and check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: N_LINES TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE ITAB LINES N_LINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLE_CONTROL-LINES = N_LINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( Now it will show the Vertical Scrollbar for the table control. )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this would help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Murthy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jul 2008 06:28:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-have-auto-scroll-functionality-in-table-control/m-p/4164924#M995738</guid>
      <dc:creator>former_member787646</dc:creator>
      <dc:date>2008-07-21T06:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: can we have auto scroll functionality in table control?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-have-auto-scroll-functionality-in-table-control/m-p/4164925#M995739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By setting the cursor position and topline of the table control this can be achieved - but ultiamtely an enter button is passed at the end of each scan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2008 19:47:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-have-auto-scroll-functionality-in-table-control/m-p/4164925#M995739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-10T19:47:30Z</dc:date>
    </item>
  </channel>
</rss>

