<?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: Table control position problem. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-position-problem/m-p/2860517#M670834</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prashanth,&lt;/P&gt;&lt;P&gt;Thanks for the inputs...&lt;/P&gt;&lt;P&gt;I am training here..and if possible pls send me the code .&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Sep 2007 11:26:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-19T11:26:47Z</dc:date>
    <item>
      <title>Table control position problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-position-problem/m-p/2860513#M670830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have created a table control to display material group and material number,&lt;/P&gt;&lt;P&gt;Exp: there are total 200 records and visible length in table control is 10 records,&lt;/P&gt;&lt;P&gt;and i have push button called "POSITION" in bottom of table control,&lt;/P&gt;&lt;P&gt;if I press the Position button need to display a subscreen with MATKL and MATNR selection fields and ones I entered the material number or material group then pressed the enter button ..I need to take the position in my table cotrol to the exact position of entered value in subscreen.&lt;/P&gt;&lt;P&gt;How to solve the problem?? pls give me some logic on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sridhar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 11:09:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-position-problem/m-p/2860513#M670830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-19T11:09:03Z</dc:date>
    </item>
    <item>
      <title>Re: Table control position problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-position-problem/m-p/2860514#M670831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Read internal table associated to the table control with the values entered on the subscreen and capture the sy-tabix value set the topline value of the table control with sy-tabix.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 11:13:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-position-problem/m-p/2860514#M670831</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-19T11:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Table control position problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-position-problem/m-p/2860515#M670832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;       Check for the logic for transaction VOV8 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Logic is create screen as modal dialog box with two fields material group or material number as input .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then on input read the index and set the table control current line as that index .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 11:14:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-position-problem/m-p/2860515#M670832</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-19T11:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: Table control position problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-position-problem/m-p/2860516#M670833</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;&lt;/P&gt;&lt;P&gt;Looping in a Step Loop&lt;/P&gt;&lt;P&gt;CURSOR &amp;lt;scroll-var&amp;gt;&lt;/P&gt;&lt;P&gt;The CURSOR parameter tells which internal table row should be the first in the screen&lt;/P&gt;&lt;P&gt;display. &amp;lt;Scroll-var&amp;gt; is a local program variable that can be set either by your program or&lt;/P&gt;&lt;P&gt;automatically by the system. The value of &amp;lt;scroll-var&amp;gt; is absolute with respect to the&lt;/P&gt;&lt;P&gt;internal table (that is, not relative to the FROM or TO values).&lt;/P&gt;&lt;P&gt;The CURSOR &amp;lt;scroll-var&amp;gt; parameter is required in the PBO event to tell the system where to&lt;/P&gt;&lt;P&gt;start displaying.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u still have any doubts revert back to me, i will post the full code&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prasant&lt;/P&gt;&lt;P&gt;*reward if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 11:20:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-position-problem/m-p/2860516#M670833</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-19T11:20:52Z</dc:date>
    </item>
    <item>
      <title>Re: Table control position problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-position-problem/m-p/2860517#M670834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prashanth,&lt;/P&gt;&lt;P&gt;Thanks for the inputs...&lt;/P&gt;&lt;P&gt;I am training here..and if possible pls send me the code .&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 11:26:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-position-problem/m-p/2860517#M670834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-19T11:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: Table control position problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-position-problem/m-p/2860518#M670835</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 think it should work &lt;/P&gt;&lt;P&gt;just try it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT itab.&lt;/P&gt;&lt;P&gt;      IF itab-matnr = strin OR itab-matkl = strin.&lt;/P&gt;&lt;P&gt;        line1 = sy-tabix.&lt;/P&gt;&lt;P&gt;        EXIT.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;    IF line1 &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      SET CURSOR LINE line1.&lt;/P&gt;&lt;P&gt;      tab1-top_line = line1.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here &amp;lt;b&amp;gt;itab&amp;lt;/b&amp;gt; is my internal table.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;tab1&amp;lt;/b&amp;gt; is table control.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;strin&amp;lt;/b&amp;gt; is my input string which i want to find.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can write this code the PBO module in which u fetching data.&lt;/P&gt;&lt;P&gt;just put one codition that u have enter search term or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2007 11:36:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-position-problem/m-p/2860518#M670835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-19T11:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: Table control position problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-position-problem/m-p/2860519#M670836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,...&lt;/P&gt;&lt;P&gt;Its solved my problem...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 11:28:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-position-problem/m-p/2860519#M670836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T11:28:30Z</dc:date>
    </item>
  </channel>
</rss>

