<?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: Control tablecontrol scrolling in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-tablecontrol-scrolling/m-p/4942351#M1152714</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 very good example about this topic, just go through the program &lt;STRONG&gt;RSDEMO02&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ramchander Rao.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Dec 2008 09:31:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-22T09:31:32Z</dc:date>
    <item>
      <title>Control tablecontrol scrolling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-tablecontrol-scrolling/m-p/4942349#M1152712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to use the scrolling fuctionality manually by my custom buttons and is there any idea to control table control scrolling or hide the scrolling tabs of table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest if it is possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Sanket sethi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Dec 2008 09:24:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-tablecontrol-scrolling/m-p/4942349#M1152712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-22T09:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: Control tablecontrol scrolling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-tablecontrol-scrolling/m-p/4942350#M1152713</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;First declare pushbuttons on your screen as FIRST, LAST, NEXT, PREVIOUS and then try following code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: va_line LIKE tab-lines,&lt;/P&gt;&lt;P&gt;va_loopc LIKE sy-loopc,&lt;/P&gt;&lt;P&gt;okcode LIKE sy-ucomm,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE populate_tab OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE itab INDEX tab-current_line.&lt;/P&gt;&lt;P&gt;  va_loopc = sy-loopc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " populate_tab  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  page_cntrl  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE page_cntrl INPUT.&lt;/P&gt;&lt;P&gt;  okcode = sy-ucomm.&lt;/P&gt;&lt;P&gt;  CLEAR sy-ucomm.&lt;/P&gt;&lt;P&gt;  CASE okcode.&lt;/P&gt;&lt;P&gt;    WHEN 'FIRST'.&lt;/P&gt;&lt;P&gt;      tab-top_line = 1.&lt;/P&gt;&lt;P&gt;      CLEAR okcode.&lt;/P&gt;&lt;P&gt;    WHEN 'LAST'.&lt;/P&gt;&lt;P&gt;      tab-top_line = tab-lines - va_loopc.&lt;/P&gt;&lt;P&gt;      CLEAR okcode.&lt;/P&gt;&lt;P&gt;    WHEN 'NEXT'.&lt;/P&gt;&lt;P&gt;      tab-top_line = tab-top_line + va_loopc.&lt;/P&gt;&lt;P&gt;      CLEAR okcode.&lt;/P&gt;&lt;P&gt;    WHEN 'PREV'.&lt;/P&gt;&lt;P&gt;      tab-top_line = tab-top_line - va_loopc.&lt;/P&gt;&lt;P&gt;      CLEAR okcode.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " page_cntrl  INPUT&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;Akshay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Dec 2008 09:30:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-tablecontrol-scrolling/m-p/4942350#M1152713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-22T09:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: Control tablecontrol scrolling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-tablecontrol-scrolling/m-p/4942351#M1152714</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 very good example about this topic, just go through the program &lt;STRONG&gt;RSDEMO02&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ramchander Rao.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Dec 2008 09:31:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-tablecontrol-scrolling/m-p/4942351#M1152714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-22T09:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: Control tablecontrol scrolling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-tablecontrol-scrolling/m-p/4942352#M1152715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SANKET SETHI  ,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that u have created the module pool in it a table control. Create a button with some fcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now Place this fcode in Pai &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make the Table control properties lines i.e vertical lines in the properties as initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By doing that u can archieve the required .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg Program in sap: RSDEMO02&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Dec 2008 09:37:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-tablecontrol-scrolling/m-p/4942352#M1152715</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-22T09:37:13Z</dc:date>
    </item>
    <item>
      <title>Re: Control tablecontrol scrolling</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-tablecontrol-scrolling/m-p/4942353#M1152716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 11:17:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-tablecontrol-scrolling/m-p/4942353#M1152716</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T11:17:20Z</dc:date>
    </item>
  </channel>
</rss>

