<?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: Set Cursor in Table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-cursor-in-table-control/m-p/9498625#M1746949</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PAI you should use GET CURSOR statement to get the row and column the cursor is currently in. Then in PBO use the SET CURSOR statment to set the cursor to the next field. Obviously you should know the order of the field in the table control to set the cursor to the following field. Also keep in mind the SY-UCOMM for Enter button is SPACE. It will help you in PAI User command event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps. Try and post your code for further troubleshooting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Jun 2013 20:44:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-06-11T20:44:41Z</dc:date>
    <item>
      <title>Set Cursor in Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-cursor-in-table-control/m-p/9498620#M1746944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have designed a table control with wizard and when i enter the input and press ENTER the cursor should move to the next column automatically .&lt;/P&gt;&lt;P&gt;Kindly share your ideas!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pradeep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 11:13:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-cursor-in-table-control/m-p/9498620#M1746944</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-06-10T11:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: Set Cursor in Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-cursor-in-table-control/m-p/9498621#M1746945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; you can use GET CURSOR and SET CURSOR command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF CURSOR_TYPE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NEXT_CUCOL TYPE SY-CUCOL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NEXT_CUROW TYPE SY-CUROW,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CURSORFIELD(30),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; POS_CUCOL&amp;nbsp; TYPE SY-CUCOL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; POS_CUROW&amp;nbsp; TYPE SY-CUROW,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; END&amp;nbsp;&amp;nbsp; OF CURSOR_TYPE.&lt;/P&gt;&lt;P&gt;DATA : CURSOR&amp;nbsp;&amp;nbsp; TYPE&amp;nbsp; CURSOR_TYPE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* to get the cursor position.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;GET &lt;SPAN class="L0S52"&gt;CURSOR &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FIELD&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;CURSOR&lt;/SPAN&gt;&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;CURSORFIELD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OFFSET &lt;SPAN class="L0S52"&gt;CURSOR&lt;/SPAN&gt;&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;POS_CUCOL&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;LINE&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;CURSOR&lt;/SPAN&gt;&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;POS_CUROW&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* to set the cursor position.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SET &lt;SPAN class="L0S52"&gt;CURSOR &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FIELD&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;CURSOR&lt;/SPAN&gt;&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;CURSORFIELD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OFFSET &lt;SPAN class="L0S52"&gt;CURSOR&lt;/SPAN&gt;&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;POS_CUCOL&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;LINE&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;CURSOR&lt;/SPAN&gt;&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;POS_CUROW&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;also see the documentation for GET/SET CURSOR.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;Mordhwaj&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 11:33:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-cursor-in-table-control/m-p/9498621#M1746945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-06-10T11:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: Set Cursor in Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-cursor-in-table-control/m-p/9498622#M1746946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just look in to the Table Control's code created by wizard, it also uses Cusrors, Current Line etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Ankit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 11:41:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-cursor-in-table-control/m-p/9498622#M1746946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-06-10T11:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: Set Cursor in Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-cursor-in-table-control/m-p/9498623#M1746947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 12:01:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-cursor-in-table-control/m-p/9498623#M1746947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-06-10T12:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: Set Cursor in Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-cursor-in-table-control/m-p/9498624#M1746948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have tried . But still it not resolved. Any more ideas? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2013 15:44:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-cursor-in-table-control/m-p/9498624#M1746948</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-06-11T15:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Set Cursor in Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-cursor-in-table-control/m-p/9498625#M1746949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PAI you should use GET CURSOR statement to get the row and column the cursor is currently in. Then in PBO use the SET CURSOR statment to set the cursor to the next field. Obviously you should know the order of the field in the table control to set the cursor to the following field. Also keep in mind the SY-UCOMM for Enter button is SPACE. It will help you in PAI User command event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps. Try and post your code for further troubleshooting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2013 20:44:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-cursor-in-table-control/m-p/9498625#M1746949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-06-11T20:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Set Cursor in Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-cursor-in-table-control/m-p/9498626#M1746950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do as suggested by Mordhwaj/Karthik i.e. &lt;/P&gt;&lt;P&gt;In PAI&lt;/P&gt;&lt;P&gt;use Get Cursor&lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;In PBO&lt;/P&gt;&lt;P&gt;use SET Cursor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg :-&lt;/P&gt;&lt;P&gt;&amp;nbsp; GET CURSOR FIELD '&amp;lt;Work_Area-Field&amp;gt;'&amp;nbsp; LINE 1.&lt;/P&gt;&lt;P&gt;&amp;nbsp; SET CURSOR FIELD '&amp;lt;Work_Area-Field&amp;gt;'&amp;nbsp; LINE 1.&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Ankit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jun 2013 04:17:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-cursor-in-table-control/m-p/9498626#M1746950</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-06-12T04:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: Set Cursor in Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-cursor-in-table-control/m-p/9498627#M1746951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradeep&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;&amp;lt;b&amp;gt;SET CURSOR FIELD &amp;lt;f&amp;gt; LINE &amp;lt;lin&amp;gt; [OFFSET &amp;lt;off&amp;gt;]&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR MORE DOCUMENTATION ON THIS PLEASE GO THROUGH THE LINK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="&lt;A class="jive-link-external-small" href="http://72.14.203.104/search?q=cache:AJJ3D7y_NFYJ:help.sap.com/saphelp_nw04/helpdata/en/9f/dbac9f35c111d1829f0000e829fbfe/content.htm"&gt;http://72.14.203.104/search?q=cache:AJJ3D7y_NFYJ:help.sap.com/saphelp_nw04/helpdata/en/9f/dbac9f35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;EM&gt;Set&lt;/EM&gt;cursor&lt;EM&gt;to&lt;/EM&gt;Table&lt;EM&gt;control&lt;/EM&gt;Field+ABAP&amp;amp;hl=en&amp;amp;gl=in&amp;amp;ct=clnk&amp;amp;cd=1"&amp;gt;Cursor Position on Table Controls&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="&lt;A class="jive-link-external-small" href="http://72.14.203.104/search?q=cache:eNQbEfxNJTUJ:help.sap.com/saphelp_nw04/helpdata/en/9f/dbac0b35c111d1829f0000e829fbfe/content.htm"&gt;http://72.14.203.104/search?q=cache:eNQbEfxNJTUJ:help.sap.com/saphelp_nw04/helpdata/en/9f/dbac0b35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;EM&gt;SET&lt;/EM&gt;CURSOR&lt;EM&gt;FIELD&lt;/EM&gt;ABAP&amp;amp;hl=en&amp;amp;gl=in&amp;amp;ct=clnk&amp;amp;cd=2"&amp;gt;Setting the Cursor Position&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suganya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jun 2013 04:26:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-cursor-in-table-control/m-p/9498627#M1746951</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-06-12T04:26:51Z</dc:date>
    </item>
  </channel>
</rss>

