<?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 Implement Entry up/down &amp; Page up/down functions in table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/implement-entry-up-down-page-up-down-functions-in-table-control/m-p/7463129#M1554152</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;I have to implement entry up/down and page up/down functions in my table control. The logic is :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose the entries in my table control currently are:-&lt;/P&gt;&lt;P&gt;Called "Initial Position" :-&lt;/P&gt;&lt;P&gt;a&lt;/P&gt;&lt;P&gt;b&lt;/P&gt;&lt;P&gt;c&lt;/P&gt;&lt;P&gt;d&lt;/P&gt;&lt;P&gt;e&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My "Cursor Position" or say my selection column is at 'c' value currently.&lt;/P&gt;&lt;P&gt;If I press entry down, the result should be:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a&lt;/P&gt;&lt;P&gt;b&lt;/P&gt;&lt;P&gt;d&lt;/P&gt;&lt;P&gt;c&lt;/P&gt;&lt;P&gt;e&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e. c shifted one value down. If I press value up from "Initial Position", it should be :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a&lt;/P&gt;&lt;P&gt;c&lt;/P&gt;&lt;P&gt;b&lt;/P&gt;&lt;P&gt;d&lt;/P&gt;&lt;P&gt;e&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I press page down from "initial position", the result should be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a&lt;/P&gt;&lt;P&gt;b&lt;/P&gt;&lt;P&gt;d&lt;/P&gt;&lt;P&gt;e&lt;/P&gt;&lt;P&gt;c&lt;/P&gt;&lt;P&gt;i.e. c has scrolled to the last entry. Similarly for page up, where the entry goes up to the first place and all entries move one position down.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem i am facing is:-&lt;/P&gt;&lt;P&gt;1) How to get index of entry selected?&lt;/P&gt;&lt;P&gt;2) How to change table control contents at runtime?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: dumbledorearmy on Nov 23, 2010 12:25 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Nov 2010 11:24:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-11-23T11:24:41Z</dc:date>
    <item>
      <title>Implement Entry up/down &amp; Page up/down functions in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implement-entry-up-down-page-up-down-functions-in-table-control/m-p/7463129#M1554152</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;I have to implement entry up/down and page up/down functions in my table control. The logic is :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose the entries in my table control currently are:-&lt;/P&gt;&lt;P&gt;Called "Initial Position" :-&lt;/P&gt;&lt;P&gt;a&lt;/P&gt;&lt;P&gt;b&lt;/P&gt;&lt;P&gt;c&lt;/P&gt;&lt;P&gt;d&lt;/P&gt;&lt;P&gt;e&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My "Cursor Position" or say my selection column is at 'c' value currently.&lt;/P&gt;&lt;P&gt;If I press entry down, the result should be:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a&lt;/P&gt;&lt;P&gt;b&lt;/P&gt;&lt;P&gt;d&lt;/P&gt;&lt;P&gt;c&lt;/P&gt;&lt;P&gt;e&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e. c shifted one value down. If I press value up from "Initial Position", it should be :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a&lt;/P&gt;&lt;P&gt;c&lt;/P&gt;&lt;P&gt;b&lt;/P&gt;&lt;P&gt;d&lt;/P&gt;&lt;P&gt;e&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I press page down from "initial position", the result should be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a&lt;/P&gt;&lt;P&gt;b&lt;/P&gt;&lt;P&gt;d&lt;/P&gt;&lt;P&gt;e&lt;/P&gt;&lt;P&gt;c&lt;/P&gt;&lt;P&gt;i.e. c has scrolled to the last entry. Similarly for page up, where the entry goes up to the first place and all entries move one position down.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem i am facing is:-&lt;/P&gt;&lt;P&gt;1) How to get index of entry selected?&lt;/P&gt;&lt;P&gt;2) How to change table control contents at runtime?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: dumbledorearmy on Nov 23, 2010 12:25 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 11:24:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implement-entry-up-down-page-up-down-functions-in-table-control/m-p/7463129#M1554152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-23T11:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: Implement Entry up/down &amp; Page up/down functions in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implement-entry-up-down-page-up-down-functions-in-table-control/m-p/7463130#M1554153</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;Please check the function module - 'SCROLLING_IN_TABLE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It give you some idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Anversha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 11:28:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implement-entry-up-down-page-up-down-functions-in-table-control/m-p/7463130#M1554153</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2010-11-23T11:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Implement Entry up/down &amp; Page up/down functions in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implement-entry-up-down-page-up-down-functions-in-table-control/m-p/7463131#M1554154</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;Thanks for the reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do not want to scroll. I want to change the contents at run time. The sequence of entries should be changed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 11:33:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implement-entry-up-down-page-up-down-functions-in-table-control/m-p/7463131#M1554154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-23T11:33:35Z</dc:date>
    </item>
  </channel>
</rss>

