<?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: SELECTION Screen Problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem/m-p/1792139#M340718</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U canstore the higher value of select option using select-options-high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex.: SELECT-OPTIONS: s_vbeln FOR vbak-vbeln.&lt;/P&gt;&lt;P&gt;data: l_vbeln like vbak-vbeln .(varaible to store high value.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now write the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;l_vbeln = s_vbeln-high.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If helpfule...please gve points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Dec 2006 10:14:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-11T10:14:09Z</dc:date>
    <item>
      <title>SELECTION Screen Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem/m-p/1792136#M340715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having the satement in my report as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_vbeln FOR vbak-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way to store the higher value of the select screen parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like I am entering 1 and 20 in the select option and i want to store 20 in one variable.&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>Mon, 11 Dec 2006 10:09:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem/m-p/1792136#M340715</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T10:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION Screen Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem/m-p/1792137#M340716</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;I believe the easier solution is to get max by a select&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT VBELN UP TO 1 ROWS FROM VBAK INTO V_MAX
                         WHERE VBELN IN S_VBELN
                             ORDER BY VBELN DESCENDING.
ENDSELECT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 10:13:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem/m-p/1792137#M340716</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T10:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION Screen Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem/m-p/1792138#M340717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Manik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the field s_vbeln-high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you enter several values.&lt;/P&gt;&lt;P&gt;loop at s_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and sort it to get the max/min values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erwan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 10:13:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem/m-p/1792138#M340717</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T10:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION Screen Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem/m-p/1792139#M340718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U canstore the higher value of select option using select-options-high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex.: SELECT-OPTIONS: s_vbeln FOR vbak-vbeln.&lt;/P&gt;&lt;P&gt;data: l_vbeln like vbak-vbeln .(varaible to store high value.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now write the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;l_vbeln = s_vbeln-high.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If helpfule...please gve points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 10:14:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem/m-p/1792139#M340718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T10:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION Screen Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem/m-p/1792140#M340719</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 declare variable, say, v_high type vbeln&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then, store &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_high = s_vbeln-high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arun Mohan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Reward points if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 10:15:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem/m-p/1792140#M340719</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T10:15:03Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION Screen Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem/m-p/1792141#M340720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S_VBELN-HIGH will store the value 20 and S_VBELN-LOW will store the value 1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 10:15:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem/m-p/1792141#M340720</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T10:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION Screen Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem/m-p/1792142#M340721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select option is like an internal table with the following structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_vbeln FOR vbak-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_vbeln-low = 1&lt;/P&gt;&lt;P&gt;s_vbeln-high = 20&lt;/P&gt;&lt;P&gt;s_vbeln-option&lt;/P&gt;&lt;P&gt;s_vbeln- sign .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you just enter 1 and 20 you can get using s_vebln-high if it is not so then you have to loop it and find it out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 10:17:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem/m-p/1792142#M340721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T10:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION Screen Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem/m-p/1792143#M340722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to use parameter-id: &amp;lt;b&amp;gt;AUN&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or Create a variable to store in table &amp;lt;b&amp;gt;TVARVC&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2006 10:29:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-problem/m-p/1792143#M340722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-11T10:29:06Z</dc:date>
    </item>
  </channel>
</rss>

