<?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: No values from selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-values-from-selection-screen/m-p/5184696#M1200035</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;  At selection-screen.&lt;/P&gt;&lt;P&gt; perform pernr check.&lt;/P&gt;&lt;P&gt;if sy-subrc Ne 0.&lt;/P&gt;&lt;P&gt;message 'incorrect ' type E.&lt;/P&gt;&lt;P&gt;start of selection.&lt;/P&gt;&lt;P&gt;select statement where pernr = p_pernr ........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so the select statement wont execute when there is an incorrect value entered for pernr.&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Feb 2009 04:13:42 GMT</pubDate>
    <dc:creator>viquar_iqbal</dc:creator>
    <dc:date>2009-02-24T04:13:42Z</dc:date>
    <item>
      <title>No values from selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-values-from-selection-screen/m-p/5184693#M1200032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ppl,&lt;/P&gt;&lt;P&gt;I have written a report program which has 3 parameters on the selection screen (Personnel number - pernr, trip number - reinr and status - abrec).&lt;/P&gt;&lt;P&gt;I have a subroutine to check for the validity of the personnel number entered on the screen. The other two parameters do not have any validity check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using these 3 parameters in my SELECT statement. But, the problem is that when I execute it, at runtime, only the parameter for personnel number shows the value entered on the selection screen. The other two parameters show initial value at runtime though an entry has been made on the selection screen. Thus, it returns a subrc value of 4 though there are matching entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anybody face such a problem? Please advise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 03:59:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-values-from-selection-screen/m-p/5184693#M1200032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-24T03:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: No values from selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-values-from-selection-screen/m-p/5184694#M1200033</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;Use AT SELECTION SCREEN event for the rest of the parameters as well, then your values will be populated automatically(whtever u enter on the screen )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Ravish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 04:07:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-values-from-selection-screen/m-p/5184694#M1200033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-24T04:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: No values from selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-values-from-selection-screen/m-p/5184695#M1200034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;Mentioning the event AT SELECTION SCREEN should resolve your problem.&lt;/P&gt;&lt;P&gt;This will ensure that the values are picked from the selection sreen for all the parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Else, if you do not use this event, your SELECT statement will not execute successfully the first time. But, if you execute your program again, it will fetch correct values.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it solves your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Dawood.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 04:13:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-values-from-selection-screen/m-p/5184695#M1200034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-24T04:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: No values from selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-values-from-selection-screen/m-p/5184696#M1200035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;  At selection-screen.&lt;/P&gt;&lt;P&gt; perform pernr check.&lt;/P&gt;&lt;P&gt;if sy-subrc Ne 0.&lt;/P&gt;&lt;P&gt;message 'incorrect ' type E.&lt;/P&gt;&lt;P&gt;start of selection.&lt;/P&gt;&lt;P&gt;select statement where pernr = p_pernr ........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so the select statement wont execute when there is an incorrect value entered for pernr.&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 04:13:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-values-from-selection-screen/m-p/5184696#M1200035</guid>
      <dc:creator>viquar_iqbal</dc:creator>
      <dc:date>2009-02-24T04:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: No values from selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-values-from-selection-screen/m-p/5184697#M1200036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;Kindly check your code, you must be changing or clearing values which entered in selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps, ohterwise just paste your code here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pratik Vora&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 04:17:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-values-from-selection-screen/m-p/5184697#M1200036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-24T04:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: No values from selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/no-values-from-selection-screen/m-p/5184698#M1200037</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;Use At Selection-Screen event.&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;Jyothi CH.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2009 04:19:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/no-values-from-selection-screen/m-p/5184698#M1200037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-24T04:19:38Z</dc:date>
    </item>
  </channel>
</rss>

