<?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 Selection Screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3778616#M909162</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to achieve the following and have do not know how to go about &lt;/P&gt;&lt;P&gt;it: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the my ABAP program selection screen for vbap-vstel I want to select all &lt;/P&gt;&lt;P&gt;items with a vstel with the third and forth positions = to 02 through 05. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Apr 2008 14:54:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-22T14:54:22Z</dc:date>
    <item>
      <title>Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3778616#M909162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to achieve the following and have do not know how to go about &lt;/P&gt;&lt;P&gt;it: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the my ABAP program selection screen for vbap-vstel I want to select all &lt;/P&gt;&lt;P&gt;items with a vstel with the third and forth positions = to 02 through 05. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 14:54:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3778616#M909162</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T14:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3778617#M909163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure exactly what you mean - have you tried the "AT SELECTION &lt;/P&gt;&lt;P&gt;SCREEN" event? This allows you to run a block of code (such as a SELECT &lt;/P&gt;&lt;P&gt;SINGLE) before the selection screen is displayed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 18:15:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3778617#M909163</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T18:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3778618#M909164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I too am confused as to what your requesting, but.. if you looking for a SELECT statement to do what your asking...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

SELECT * FROM vbap
  WHERE vstel LIKE '%02'
     or vstel LIKE '%03'
     or vstel LIKE '%04'
     or vstel LIKE '%05'.

* Do something

ENDSELECT.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will work.. but it will be pretty slow.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 18:42:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3778618#M909164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T18:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3778619#M909165</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;What is your requirement exactly?  As per my understand  &lt;/P&gt;&lt;P&gt;You want to get the data from DBtable in where conditon vstel field  3rd and 4th positions are EQ to  '02', '03', '04', '05' in any one should be match.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is correct see below eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * ...............&lt;/P&gt;&lt;P&gt;         where 2(1)+vstel in ('02', '03', '04', '05' ) and&lt;/P&gt;&lt;P&gt;                  3(1)+vstel in ('02', '03', '04', '05' ) .&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&lt;/P&gt;&lt;P&gt;Ganesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 18:47:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3778619#M909165</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T18:47:28Z</dc:date>
    </item>
  </channel>
</rss>

