<?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: Changing the cursor position on selection screen. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-cursor-position-on-selection-screen/m-p/5065094#M1176860</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mudit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly go through this link below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/Helpdata/EN/9f/dbac0b35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/Helpdata/EN/9f/dbac0b35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mansi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Feb 2009 11:38:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-04T11:38:33Z</dc:date>
    <item>
      <title>Changing the cursor position on selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-cursor-position-on-selection-screen/m-p/5065091#M1176857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;I am working in report program in which i have different fields as a parameter in selection screen.&lt;/P&gt;&lt;P&gt;Actualy by default the cursor position comes on the first field . i want to change the postion of cursor to another field. &lt;/P&gt;&lt;P&gt;I tried to  do it  using set cursor field under At selection screen on block event but its not working .&lt;/P&gt;&lt;P&gt;Kindly suggest me the way to do that.&lt;/P&gt;&lt;P&gt; For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: MATNR LIKE makt-matnr,&lt;/P&gt;&lt;P&gt;            MAKTX LIKE makt-maktx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b.&lt;/P&gt;&lt;P&gt; AT SELECTION-SCREEN on block b .&lt;/P&gt;&lt;P&gt;SET CURSOR FIELD 'MAKTX' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cursor comes by default on matnr field . i want on maktx .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 11:31:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-cursor-position-on-selection-screen/m-p/5065091#M1176857</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T11:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the cursor position on selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-cursor-position-on-selection-screen/m-p/5065092#M1176858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try This way..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: MATNR LIKE makt-matnr,&lt;/P&gt;&lt;P&gt;MAKTX LIKE makt-maktx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN on block b .&lt;/P&gt;&lt;P&gt;SET CURSOR FIELD 'MAKTX' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;AT SELECTION-SCREEN OUTPUT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET CURSOR FIELD 'MAKTX' .&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 11:33:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-cursor-position-on-selection-screen/m-p/5065092#M1176858</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T11:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the cursor position on selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-cursor-position-on-selection-screen/m-p/5065093#M1176859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mudit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF BLOCK b.

PARAMETERS:
matnr LIKE makt-matnr,
maktx LIKE makt-maktx.

SELECTION-SCREEN END OF BLOCK b.

AT SELECTION-SCREEN ON BLOCK b .

INITIALIZATION.
  SET CURSOR FIELD 'MAKTX' .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 11:37:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-cursor-position-on-selection-screen/m-p/5065093#M1176859</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-02-04T11:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the cursor position on selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-cursor-position-on-selection-screen/m-p/5065094#M1176860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mudit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly go through this link below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/Helpdata/EN/9f/dbac0b35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/Helpdata/EN/9f/dbac0b35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mansi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 11:38:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-cursor-position-on-selection-screen/m-p/5065094#M1176860</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T11:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the cursor position on selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-cursor-position-on-selection-screen/m-p/5065095#M1176861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 11:38:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-cursor-position-on-selection-screen/m-p/5065095#M1176861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T11:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the cursor position on selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-cursor-position-on-selection-screen/m-p/5065096#M1176862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mudit ,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use SET CURSOR FIELD 'MAKTX' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the event AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nishit Joshi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 11:41:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-cursor-position-on-selection-screen/m-p/5065096#M1176862</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T11:41:03Z</dc:date>
    </item>
  </channel>
</rss>

