<?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: Excluding data from the selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631565#M1282158</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kishore,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you try the solution which I have given in the earlier post... this will work for sure...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at outtab where not zadpbatch in s_batch.
"
 
Endloop&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 May 2009 10:02:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-06T10:02:11Z</dc:date>
    <item>
      <title>Excluding data from the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631554#M1282147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an issue like , I am reading the datas from server and i am using open dataset and read data set for reading the same..I have all my datas in my internal  table..But now i need to exclude certain values which i give in selection screen as multiple values..For single values its excluding but when i give multiple values its taking only the low range.values to be excluded..&lt;/P&gt;&lt;P&gt;Could any one tell me wats that i need to do for reading multiple values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 09:39:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631554#M1282147</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T09:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding data from the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631555#M1282148</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;Please paste the code how you are excluding single values... will modify it and give it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 09:43:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631555#M1282148</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T09:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding data from the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631556#M1282149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you give both low and high valuesin select option it beahves like a range .&lt;/P&gt;&lt;P&gt;So you can loop at this select option.&lt;/P&gt;&lt;P&gt;read itab.&lt;/P&gt;&lt;P&gt;delete if found.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 09:43:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631556#M1282149</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2009-05-06T09:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding data from the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631557#M1282150</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;Let u have KUNNR in selection screen and u r getting data of customers form AL11 (to a table AL11_TABLE).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then get all Kunnrs from base table (For KUNNR it is KNA1) to a internal tabl ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort AL11_TABLE by KUNNR.&lt;/P&gt;&lt;P&gt;Loop at ITAB.&lt;/P&gt;&lt;P&gt;delete AL11_Table where kunnr = ITAB-KUNNR.&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kiran.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: kiran vempati on May 6, 2009 11:48 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 09:47:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631557#M1282150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T09:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding data from the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631558#M1282151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if s_data is field on the selection screen, u can use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if  v_data not in s_data .&lt;/P&gt;&lt;P&gt;delete............&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 09:49:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631558#M1282151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T09:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding data from the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631559#M1282152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;loop at outtab where zadpbatch ne s_batch-low.&lt;/P&gt;&lt;P&gt;" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Endloop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the loop where i am giving the criteria..But its takin only low values and not high values..even when i didn give low also its taking only low values&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 09:50:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631559#M1282152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T09:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding data from the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631560#M1282153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To exclude more than one value using range you need to pass all in lower option.&lt;/P&gt;&lt;P&gt;you will not be able to convert these individual values to interval.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 09:51:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631560#M1282153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T09:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding data from the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631561#M1282154</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;modify the code as given below.... This will resolve your issue for sure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at outtab where not zadpbatch in s_batch.
"

Endloop&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 09:52:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631561#M1282154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T09:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding data from the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631562#M1282155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kishore,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just check this:&lt;/P&gt;&lt;P&gt;Suppose your internal table ITAB is having 2 fields:&lt;/P&gt;&lt;P&gt;VBELN        KUNNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Selection screen field = s_kunnr.&lt;/P&gt;&lt;P&gt;internal variable = i_tabix like sy-tabix.&lt;/P&gt;&lt;P&gt;The coding will be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;i_tabix = sy-tabix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF ITAB-KUNNR IN S_KUNNR.&lt;/P&gt;&lt;P&gt;  DELETE ITAB INDEX I_TABIX.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 09:53:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631562#M1282155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T09:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding data from the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631563#M1282156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how can i pass all the values in low itself i just wanna know because when i give multiple values for selection its taking only the first as low others its leaving that&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 09:54:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631563#M1282156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T09:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding data from the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631564#M1282157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats perfectly correct for select option.&lt;/P&gt;&lt;P&gt;In the very beginning i mentioned to create range table and your porblem is solved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 09:57:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631564#M1282157</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2009-05-06T09:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding data from the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631565#M1282158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kishore,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you try the solution which I have given in the earlier post... this will work for sure...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at outtab where not zadpbatch in s_batch.
"
 
Endloop&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 10:02:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631565#M1282158</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T10:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding data from the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631566#M1282159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i tried the one u have given, Its excluding multiple values but wat happens is like when i didn give any criteria in select option its not displaying anything..&lt;/P&gt;&lt;P&gt;I want the thing like wat ever i give in select option that should be excluded but if i ddin specify any values in select option then  it should show everthing which is not happening in this case help me to solve this also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 10:22:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631566#M1282159</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T10:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding data from the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631567#M1282160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;its pretty simple..... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if s_batch is not initial.
loop at outtab where not zadpbatch in s_batch.
"
Endloop
else.
loop at outtab.
"
Endloop
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this resolves your issue....&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 10:25:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631567#M1282160</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T10:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding data from the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631568#M1282161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kishore,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just check this:&lt;/P&gt;&lt;P&gt;Suppose your internal table ITAB is having 2 fields:&lt;/P&gt;&lt;P&gt;VBELN KUNNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Selection screen field = s_kunnr.&lt;/P&gt;&lt;P&gt;internal variable = i_tabix like sy-tabix.&lt;/P&gt;&lt;P&gt;The coding will be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF S_KUNNR IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;i_tabix = sy-tabix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF ITAB-KUNNR IN S_KUNNR.&lt;/P&gt;&lt;P&gt;DELETE ITAB INDEX I_TABIX.&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;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 10:28:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631568#M1282161</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T10:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding data from the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631569#M1282162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for ur valuable answer. I solved the problem  Urs option is working but i tried by If conidtion that too worked..For performance i chose that . ANyways thanks a lot to everyone who helped me in this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 10:52:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/excluding-data-from-the-selection-screen/m-p/5631569#M1282162</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T10:52:44Z</dc:date>
    </item>
  </channel>
</rss>

