<?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: parameter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/4438151#M1053216</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;parameters : p1(10) type  c,
                            p2(10) type  c,
                            p3(10) type  c,
                            p4(10) type  c.
intialization. 
         SET CURSOR FIELD P4.&lt;/CODE&gt;&lt;/PRE&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;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 07 Sep 2008 14:11:02 GMT</pubDate>
    <dc:creator>Mohamed_Mukhtar</dc:creator>
    <dc:date>2008-09-07T14:11:02Z</dc:date>
    <item>
      <title>parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/4438150#M1053215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi abapers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;iam using four parameters in selection screen,&lt;/P&gt;&lt;P&gt;by default the cursor is in the first position.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i want to place the cursor in the last parameter to enter any text or value .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i over come this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Sep 2008 13:57:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/4438150#M1053215</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-07T13:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/4438151#M1053216</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;parameters : p1(10) type  c,
                            p2(10) type  c,
                            p3(10) type  c,
                            p4(10) type  c.
intialization. 
         SET CURSOR FIELD P4.&lt;/CODE&gt;&lt;/PRE&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Sep 2008 14:11:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/4438151#M1053216</guid>
      <dc:creator>Mohamed_Mukhtar</dc:creator>
      <dc:date>2008-09-07T14:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/4438152#M1053217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajesh,&lt;/P&gt;&lt;P&gt;Check below example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS: po_1 TYPE c,
po_2 TYPE c,
po_3 TYPE c,
po_4 TYPE c.

AT SELECTION-SCREEN OUTPUT.
  SET CURSOR FIELD 'PO_4'.   " This is the one which is doing the trick
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Sep 2008 14:29:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/4438152#M1053217</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-09-07T14:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/4438153#M1053218</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;We can use SET CURSOR FIELD syntax to place the cursor on intended field and it should be written on selection screen output event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN OUTPUT.
  SET CURSOR FIELD 'PO_4'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This event is executed at PBO of the selection screen every time the user presses ENTER - in contrast to INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 05:16:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter/m-p/4438153#M1053218</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T05:16:37Z</dc:date>
    </item>
  </channel>
</rss>

