<?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 Scroll Bars in Table Control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-bars-in-table-control/m-p/3332412#M798604</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;How do I remove the vertical and horizontal scroll bars in the table control? I would like to use the Pg Up/Down buttons instead. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mounika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 26 Jan 2008 14:04:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-26T14:04:49Z</dc:date>
    <item>
      <title>Scroll Bars in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-bars-in-table-control/m-p/3332412#M798604</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;How do I remove the vertical and horizontal scroll bars in the table control? I would like to use the Pg Up/Down buttons instead. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mounika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Jan 2008 14:04:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-bars-in-table-control/m-p/3332412#M798604</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-26T14:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: Scroll Bars in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-bars-in-table-control/m-p/3332413#M798605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mounika,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can add or remove the scroll bar in the table control by switching off horizontal and vertical scrolling in the properties of the table control. The properties can be accessed from the screen painter by double clicking on the table control. Regarding the page up and page down functions, I believe you add those buttons in the screen layout and code for them. You can use the standard function code for the page up and page down functions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding the Page up Page down...You need to add some extra code in your program to activvate that. Check the following program for example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DEMO_DYNPRO_TABCONT_LOOP_AT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or try something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WHEN 'P+' OR&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'P++' OR&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'P-' OR&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'P--'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CALL FUNCTION 'SCROLLING_IN_TABLE'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;EXPORTING&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;entry_act = tc-top_line&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;entry_to = tc-lines&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;last_page_full = 'X'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;loops = loops&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ok_code = sy-ucomm&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;overlapping = 'X'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;IMPORTING&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;entry_new = tc-top_line&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;EXCEPTIONS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;no_entry_or_page_act = 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;no_entry_to = 2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;no_ok_code_or_page_go = 3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;OTHERS = 4&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ENDCASE&lt;/STRONG&gt;   .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vinodh Balakrishnan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Jan 2008 15:43:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-bars-in-table-control/m-p/3332413#M798605</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-26T15:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: Scroll Bars in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-bars-in-table-control/m-p/3332414#M798606</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 can remove the scroll bar in the table control by switching off horizontal and vertical scrolling in the properties of the table control. The properties can be accessed from the screen painter by double clicking on the table control. Regarding the page up and page down functions, I believe you add those buttons in the screen layout and code for them. You can use the standard function code for the page up and page down functions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can get rid of the vertical scroll bars by not setting table control lines. This way the user can only see the visible lines of the table control. As for the horizontal scrollbar, just make sure that your table control doesn't contain too many fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward points if found helpfull..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Cheers,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Chandra Sekhar.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Jan 2008 09:11:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-bars-in-table-control/m-p/3332414#M798606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-27T09:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: Scroll Bars in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-bars-in-table-control/m-p/3332415#M798607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can remove the horizontal scrollbar by setting the "Fixed columns" property (in the screen painter) to the full number of columns contained in the table control.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2012 14:40:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-bars-in-table-control/m-p/3332415#M798607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-21T14:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: Scroll Bars in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-bars-in-table-control/m-p/3332416#M798608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mounika,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please open your table control using screen painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check/ uncheck RESIZING VERTICAL/ HORIZONTAL attributes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2012 12:35:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-bars-in-table-control/m-p/3332416#M798608</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-22T12:35:19Z</dc:date>
    </item>
  </channel>
</rss>

