<?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: Scroll list and set cursor in selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-list-and-set-cursor-in-selection-screen/m-p/5598009#M1275885</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for that. It is working fine. But can you please suggest the same with a popup message instead of an error message?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF p_aut1 = '1' AND p_mil1 = ' '.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        titel        = 'Transportation'&lt;/P&gt;&lt;P&gt;        textline1    = text-e58&lt;/P&gt;&lt;P&gt;        start_column = 25&lt;/P&gt;&lt;P&gt;        start_row    = 6.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anjana.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 May 2009 21:23:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-05T21:23:10Z</dc:date>
    <item>
      <title>Scroll list and set cursor in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-list-and-set-cursor-in-selection-screen/m-p/5598007#M1275883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;I have a selection screen which is really big. There are conditions given, where any field is left blank on a particular condition, a popup shows to the user. &lt;/P&gt;&lt;P&gt;But, the cursor was not pointed to the error field. Now I have given the set cursor in at selection-screen output, and that is working. But the page is not scrolling up to the field where it is errored. &lt;/P&gt;&lt;P&gt;Can anyone suggest a way by which I can scroll to the correct field and show the cursor there? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried scroll list to first page, and that did not work. Any help will be greatly appreciated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anjana.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2009 20:54:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-list-and-set-cursor-in-selection-screen/m-p/5598007#M1275883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-05T20:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: Scroll list and set cursor in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-list-and-set-cursor-in-selection-screen/m-p/5598008#M1275884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you raise your error in the event AT SELECTION-SCREEN on field than system automatically scrolls the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to run this code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
parameters: p_first type char1.
selection-screen: skip 9.
selection-screen: skip 9.
selection-screen: skip 9.
selection-screen: skip 9.
selection-screen: skip 9.
parameters: p_second type char1.

at selection-screen on p_second.
 if p_second is initial.
   message 'Enter P_SECOND' type 'E'.
 endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2009 21:05:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-list-and-set-cursor-in-selection-screen/m-p/5598008#M1275884</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2009-05-05T21:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: Scroll list and set cursor in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-list-and-set-cursor-in-selection-screen/m-p/5598009#M1275885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for that. It is working fine. But can you please suggest the same with a popup message instead of an error message?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF p_aut1 = '1' AND p_mil1 = ' '.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        titel        = 'Transportation'&lt;/P&gt;&lt;P&gt;        textline1    = text-e58&lt;/P&gt;&lt;P&gt;        start_column = 25&lt;/P&gt;&lt;P&gt;        start_row    = 6.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anjana.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2009 21:23:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-list-and-set-cursor-in-selection-screen/m-p/5598009#M1275885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-05T21:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Scroll list and set cursor in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-list-and-set-cursor-in-selection-screen/m-p/5598010#M1275886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anjana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN ON P_OUTPUT.
  IF P_OUTPUT IS INITIAL.
    MESSAGE 'Error. Enter Value ' TYPE 'E'  DISPLAY LIKE 'I'.
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Dileep .C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 01:59:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scroll-list-and-set-cursor-in-selection-screen/m-p/5598010#M1275886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T01:59:14Z</dc:date>
    </item>
  </channel>
</rss>

