<?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: Setting cursor in table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111155#M106222</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;get the screen name of that field not the internal table field name through which you are looping at.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code is:&lt;/P&gt;&lt;P&gt;set cursor field 'name of the field' line table_control_name-current_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this works....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Oct 2005 15:57:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-10-26T15:57:37Z</dc:date>
    <item>
      <title>Setting cursor in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111147#M106214</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;The statement,&lt;/P&gt;&lt;P&gt;SET CURSOR FIELD 'SCR_100' LINE scr_100-current_line.&lt;/P&gt;&lt;P&gt;does not.&lt;/P&gt;&lt;P&gt;How can i set cursor on table line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2005 09:11:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111147#M106214</guid>
      <dc:creator>vinotha_m</dc:creator>
      <dc:date>2005-10-26T09:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: Setting cursor in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111148#M106215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set cursor field &amp;lt;b&amp;gt;scr_100-field1&amp;lt;/b&amp;gt; line scr_100-current_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where scr_100 is your table control name and field1 is the column where u want to set the cursor in the row specified by scr_100-current_line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u r just missing the column of the table where u want to set the cursor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;PJ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Priyank Jain&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2005 09:16:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111148#M106215</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-26T09:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: Setting cursor in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111149#M106216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, it's more like&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SET CURSOR FIELD 'MY_STRUC-MATNR' LINE 5.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2005 09:17:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111149#M106216</guid>
      <dc:creator>christian_wohlfahrt</dc:creator>
      <dc:date>2005-10-26T09:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: Setting cursor in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111150#M106217</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;u should write the statement in the PBO of the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At PBO you can set the cursor on a specific field of a specific row of a table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET CURSOR FIELD &amp;lt;f&amp;gt; LINE &amp;lt;lin&amp;gt; [OFFSET &amp;lt;off&amp;gt;]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ruthra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2005 11:01:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111150#M106217</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-26T11:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Setting cursor in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111151#M106218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Priyanka for replying&lt;/P&gt;&lt;P&gt; but the field is an internal table field and when i give field name as it_ekpo-matnr it does not work, though it does not give any syntax errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But scr_100-it_ekpo-matnr  gives an error&lt;/P&gt;&lt;P&gt;The data object "SCR_100" does not have a component called&lt;/P&gt;&lt;P&gt;"IT_EKPO-MATNR".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Vinotha M&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2005 11:10:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111151#M106218</guid>
      <dc:creator>vinotha_m</dc:creator>
      <dc:date>2005-10-26T11:10:28Z</dc:date>
    </item>
    <item>
      <title>Re: Setting cursor in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111152#M106219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Christian,&lt;/P&gt;&lt;P&gt; this also does not work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2005 11:15:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111152#M106219</guid>
      <dc:creator>vinotha_m</dc:creator>
      <dc:date>2005-10-26T11:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: Setting cursor in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111153#M106220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Ruthra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i tot this was only for tabstrip controls,&lt;/P&gt;&lt;P&gt;Anyway this too doesnt work..&lt;/P&gt;&lt;P&gt;Can u elaborate pleeez.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2005 11:17:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111153#M106220</guid>
      <dc:creator>vinotha_m</dc:creator>
      <dc:date>2005-10-26T11:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: Setting cursor in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111154#M106221</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;Looks like you have a problem in finding the correct name. Just make a 'GET CURSOR' in PAI, then you can see in debugging how SAP expects the naming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2005 12:38:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111154#M106221</guid>
      <dc:creator>christian_wohlfahrt</dc:creator>
      <dc:date>2005-10-26T12:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: Setting cursor in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111155#M106222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;get the screen name of that field not the internal table field name through which you are looping at.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code is:&lt;/P&gt;&lt;P&gt;set cursor field 'name of the field' line table_control_name-current_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this works....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2005 15:57:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111155#M106222</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-26T15:57:37Z</dc:date>
    </item>
    <item>
      <title>Re: Setting cursor in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111156#M106223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HEy ,&lt;/P&gt;&lt;P&gt;Thanks Christian,&lt;/P&gt;&lt;P&gt;That was my problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Oct 2005 05:17:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111156#M106223</guid>
      <dc:creator>vinotha_m</dc:creator>
      <dc:date>2005-10-27T05:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: Setting cursor in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111157#M106224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Christian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am working with the table control.&lt;/P&gt;&lt;P&gt;i have two push buttons as page up and page down, corresponding code is been written as well, and those are working well and making the table control to scroll up and down.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nut when i press page up and page-down from the keyboard the vertical scroll bar doesn't moves. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To make page down and page up to work i have to select some particular record on the table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e. if i set the cursor at every top_line of the table control the page down and page up from the keyboard will start working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i have a doubt how to work on it.&lt;/P&gt;&lt;P&gt;as you helped in solving the problem of set cursor.&lt;/P&gt;&lt;P&gt;so i thought of asking your help on this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i will be thankful to you, if you guide me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;ekta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 14:07:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111157#M106224</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T14:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: Setting cursor in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111158#M106225</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;the issue is been resolved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; index_t = tab_ctrl1-top_line.&lt;/P&gt;&lt;P&gt;  index_d = tab_ctrl1-top_line + n.&lt;/P&gt;&lt;P&gt;  set cursor field 'WA_MATERIAL_DATA-MATNR' line N OFFSET INDEX_T.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;ekta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 14:51:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/setting-cursor-in-table-control/m-p/1111158#M106225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T14:51:45Z</dc:date>
    </item>
  </channel>
</rss>

