<?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 problems on table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-on-table-control/m-p/6470104#M1417104</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I  scoll any table control in my dialog program , the screen will jump to the top of screen automaticllay. I don't know why.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Dec 2009 09:11:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-30T09:11:12Z</dc:date>
    <item>
      <title>problems on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-on-table-control/m-p/6470104#M1417104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I  scoll any table control in my dialog program , the screen will jump to the top of screen automaticllay. I don't know why.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Dec 2009 09:11:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-on-table-control/m-p/6470104#M1417104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-30T09:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: problems on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-on-table-control/m-p/6470105#M1417105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please check if any of follwoinf variables of TC.. &lt;/P&gt;&lt;P&gt;TOP_LINE&lt;/P&gt;&lt;P&gt;CURRENT_LINE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set to 0 or 1 in PBO of screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Dec 2009 10:17:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-on-table-control/m-p/6470105#M1417105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-30T10:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: problems on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-on-table-control/m-p/6470106#M1417106</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;PRE&gt;&lt;CODE&gt;Now your Cursor is by default on the First field of the Screen.

so 
in PBO 

set cursor field 'ITAB-MATNR' line 1. " or TC-TOP_LINE or TC-CURRENT_LINE.
" or in PAI GET CURSOR FIELD 'ITAB-MATNR' line line  
" declare a variable in Top include data line type i.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Cheerz&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Dec 2009 10:51:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-on-table-control/m-p/6470106#M1417106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-30T10:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: problems on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-on-table-control/m-p/6470107#M1417107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will advice you to activate debugger and then scroll .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will take you to the part of code that is being executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, check what is missing/going wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There can be chances that some perform is placed at wrong place.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Dec 2009 11:23:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-on-table-control/m-p/6470107#M1417107</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-30T11:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: problems on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-on-table-control/m-p/6470108#M1417108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;in the PBO of the code write below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DESCRIBE table IT LINES TC-LINES&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;IT&lt;/STRONG&gt; - Internal table used in Table control, &lt;STRONG&gt;TC&lt;/STRONG&gt; -tablecontrol name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will enable vertical scroll.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can make use of CXTAB_CONTROL 's (CURRENT_LINE ,TOP_LINE).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it will help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Dec 2009 13:39:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-on-table-control/m-p/6470108#M1417108</guid>
      <dc:creator>sarath_7</dc:creator>
      <dc:date>2009-12-30T13:39:41Z</dc:date>
    </item>
  </channel>
</rss>

