<?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: check select-options in selection-screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068212#M1355134</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Climens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whats the difference between Swetha code and yours???&lt;/P&gt;&lt;P&gt;Except select count(*) &lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 12 Sep 2009 15:02:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-12T15:02:10Z</dc:date>
    <item>
      <title>check select-options in selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068201#M1355123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have two select-options in a selection-screen s_vbeln and p_ebeln with intervals &amp;amp; with extensions. Now i have to check whether values in  high or in low are valid or not? I have written the following code to check the validity of the values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON s_vbeln.&lt;/P&gt;&lt;P&gt;  IF SY-UCOMM EQ 'ONLI' .&lt;/P&gt;&lt;P&gt;    IF NOT s_vbeln[] IS INITIAL.&lt;/P&gt;&lt;P&gt;      LOOP AT s_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        SELECT SINGLE VBELN&lt;/P&gt;&lt;P&gt;                    FROM VBAK&lt;/P&gt;&lt;P&gt;                    INTO gs_vbeln&lt;/P&gt;&lt;P&gt;                   WHERE VBELN EQ s_vbeln-LOW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;          MESSAGE E398(00) WITH 'Invalid Sales Order Number!!'.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        SELECT SINGLE VBELN&lt;/P&gt;&lt;P&gt;                     FROM VBAK&lt;/P&gt;&lt;P&gt;                    INTO gs_vbeln&lt;/P&gt;&lt;P&gt;                   WHERE VBELN EQ s_vbeln-HIGH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;          MESSAGE E398(00) WITH 'Invalid Sales Order Number!!'.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The similar is with p_ebeln which is a field of ekko table.And vbeln is a field of vbak table. if gurus can post the code &lt;/P&gt;&lt;P&gt;for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 04:59:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068201#M1355123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T04:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: check select-options in selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068202#M1355124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;you can write like&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT SINGLE VBELN
FROM VBAK
INTO gs_vbeln
WHERE VBELN in s_vbeln.

IF SY-SUBRC NE 0.
MESSAGE E398(00) WITH 'Invalid Sales Order Number!!'.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Lalit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: LL D on Sep 9, 2009 10:43 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 05:13:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068202#M1355124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T05:13:36Z</dc:date>
    </item>
    <item>
      <title>Re: check select-options in selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068203#M1355125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shweta,&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;    Welcome to SCN, you code seems to be good, what is the issue that you are having.&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;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 05:17:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068203#M1355125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T05:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: check select-options in selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068204#M1355126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Swetha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe, your code is correct, lets know whats the issue, you are facing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Sripal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 05:31:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068204#M1355126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T05:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: check select-options in selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068205#M1355127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Priya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Test the following Sample Code it will work for you &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES: vbak, ekko.
SELECT-OPTIONS: s_vbeln FOR vbak-vbeln,
                s_ebeln FOR ekko-ebeln.

AT SELECTION-SCREEN.

  IF NOT s_vbeln[] IS INITIAL.
    SELECT SINGLE * FROM vbak
    WHERE vbeln IN s_vbeln.
    IF sy-subrc NE 0.
      MESSAGE e398(00) WITH 'Invalid Sales Order Number!!'.
    ENDIF.
  ENDIF.

  IF NOT s_ebeln[] IS INITIAL.
    SELECT SINGLE * FROM ekko
    WHERE ebeln IN s_ebeln.
    IF sy-subrc NE 0.
      MESSAGE e398(00) WITH 'Invalid Purchasing Document Number!!'.
    ENDIF.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Reply if any Issue,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 05:33:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068205#M1355127</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-09-09T05:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: check select-options in selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068206#M1355128</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;you can use this code and as well as this link.. i hope it will be working...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE VBELN&lt;/P&gt;&lt;P&gt;FROM VBAK&lt;/P&gt;&lt;P&gt;INTO gs_vbeln&lt;/P&gt;&lt;P&gt;WHERE VBELN in s_vbeln.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;MESSAGE E398(00) WITH 'Invalid Sales Order Number!!'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="689308"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Ahamed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 06:01:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068206#M1355128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T06:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: check select-options in selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068207#M1355129</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;you can use this code and as well as this link.. i hope it will be working...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE VBELN&lt;/P&gt;&lt;P&gt;FROM VBAK&lt;/P&gt;&lt;P&gt;INTO gs_vbeln&lt;/P&gt;&lt;P&gt;WHERE VBELN in s_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;MESSAGE E398(00) WITH 'Invalid Sales Order Number!!'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="689308"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Ahamed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 06:26:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068207#M1355129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T06:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: check select-options in selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068208#M1355130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Shweta,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;I have two select-options in a selection-screen s_vbeln and p_ebeln with intervals &amp;amp; with extensions. Now i have to check whether values in high or in low are valid or not?&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I donot think this is the correct way of validating a select-option. Your idea when validating a select-option must be to check that there are no valid values for the Range provided by the LOW &amp;amp; HIGH values. Even if you have only 1 valid data, then the processing should carry on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your LOW &amp;amp; HIGH values may be incorrect, but in the range provided by these values you have valid data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check what exactly is your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 06:30:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068208#M1355130</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-09-09T06:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: check select-options in selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068209#M1355131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my problem is quite interesting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have the above code. now if put a valid value in s_vbeln (i.e 35 in low and 464)&lt;/P&gt;&lt;P&gt;"&lt;STRONG&gt;invalid sales order number&lt;/STRONG&gt; " is displayed, even they are valid values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your helpful suggestion is highly appreciated.&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;Shweta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Sep 2009 09:23:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068209#M1355131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-12T09:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: check select-options in selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068210#M1355132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Swetha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check are you using SY-SUBRC = 0 OR SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please change it to Sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Sep 2009 09:28:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068210#M1355132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-12T09:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: check select-options in selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068211#M1355133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shweta,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options are represented as internal tables in the system. If the user extends the select-option and enters a couple of values, they should be checked all. So the code should be a little bit enhanced. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To have the cursor positioned a the field with the error, you may use event&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN ON s_vbeln.
  PERFORM check_s_vbeln.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  CHECK_S_VBELN
*&amp;amp;---------------------------------------------------------------------*
FORM check_s_vbeln .
  LOOP AT s_vbeln.
    IF s_vbeln-low IS NOT INITIAL.
      SELECT count(*) FROM vbak WHERE vbeln = s_vbeln-low.
        IF sy-subrc &amp;lt;&amp;gt; 0.
          MESSAGE e001(vb) WITH s_vbeln-low.
*   Sales document &amp;amp; does not exist
        ENDIF.
      ENDIF.
      IF s_vbeln-high IS NOT INITIAL.
        SELECT count(*) FROM vbak WHERE vbeln = s_vbeln-high.
          IF sy-subrc &amp;lt;&amp;gt; 0.
            MESSAGE e001(vb) WITH s_vbeln-high.
*   Sales document &amp;amp; does not exist
          ENDIF.
        ENDIF.
      ENDLOOP.
    ENDFORM.                    " CHECK_S_VBELN&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Sep 2009 14:50:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068211#M1355133</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2009-09-12T14:50:36Z</dc:date>
    </item>
    <item>
      <title>Re: check select-options in selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068212#M1355134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Climens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whats the difference between Swetha code and yours???&lt;/P&gt;&lt;P&gt;Except select count(*) &lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Sep 2009 15:02:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068212#M1355134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-12T15:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: check select-options in selection-screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068213#M1355135</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;no big difference, but&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use of event &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN ON s_vbeln.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- will position the cursor on the field with the wrong number and mark it in red color&lt;/P&gt;&lt;P&gt;- will disable all other fields in the screen until corrrected&lt;/P&gt;&lt;P&gt;- will execute only if values in the screen are entered or changed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use of &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MESSAGE e001(vb) WITH s_vbeln-low.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;          &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MESSAGE e001(vb) WITH s_vbeln-high.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;will reflect the wrong value in the message. This may be useful if it occurs in a JOB or so.&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;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Sep 2009 15:45:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-select-options-in-selection-screen/m-p/6068213#M1355135</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2009-09-12T15:45:53Z</dc:date>
    </item>
  </channel>
</rss>

