<?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 select option in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/3842875#M923982</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I m getting one problem while using select option. In my selection screen, I have one field named as S_KUNNR. In selection screen I entered values in S_KUNNR as 01* to 22*.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my program I have condition &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHECK LV_KUNNR IN S_KUNNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the value of LV_KUNNR = 01 then it won't go for further processing whereas if the value of LV_KUNNR = 02 &amp;amp; so on then it will consider for further processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is to consider 01 value also in my output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestion pls???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 May 2008 07:23:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-09T07:23:50Z</dc:date>
    <item>
      <title>select option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/3842875#M923982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I m getting one problem while using select option. In my selection screen, I have one field named as S_KUNNR. In selection screen I entered values in S_KUNNR as 01* to 22*.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my program I have condition &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHECK LV_KUNNR IN S_KUNNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the value of LV_KUNNR = 01 then it won't go for further processing whereas if the value of LV_KUNNR = 02 &amp;amp; so on then it will consider for further processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is to consider 01 value also in my output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestion pls???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 07:23:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/3842875#M923982</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-09T07:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: select option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/3842876#M923983</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;Pls check the code below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : kna1.&lt;/P&gt;&lt;P&gt;data : begin of ikna1 occurs 0,&lt;/P&gt;&lt;P&gt;        kunnr like kna1-kunnr,&lt;/P&gt;&lt;P&gt;       end of ikna1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options : s_kunnr for kna1-kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ikna1-kunnr = '0100000000'.&lt;/P&gt;&lt;P&gt;append ikna1.&lt;/P&gt;&lt;P&gt;ikna1-kunnr = '0200000000'.&lt;/P&gt;&lt;P&gt;append ikna1.&lt;/P&gt;&lt;P&gt;ikna1-kunnr = '0300000000'.&lt;/P&gt;&lt;P&gt;append ikna1.&lt;/P&gt;&lt;P&gt;ikna1-kunnr = '0400000000'.&lt;/P&gt;&lt;P&gt;append ikna1.&lt;/P&gt;&lt;P&gt;ikna1-kunnr = '0500000000'.&lt;/P&gt;&lt;P&gt;append ikna1.&lt;/P&gt;&lt;P&gt;ikna1-kunnr = '0600000000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at ikna1.&lt;/P&gt;&lt;P&gt; check ikna1-kunnr in s_kunnr.&lt;/P&gt;&lt;P&gt; message 'Got the answer' type 'I'.&lt;/P&gt;&lt;P&gt; exit.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this is of some use to u.&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 07:36:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/3842876#M923983</guid>
      <dc:creator>anub</dc:creator>
      <dc:date>2008-05-09T07:36:16Z</dc:date>
    </item>
  </channel>
</rss>

