<?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: checking Not in operator in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193298#M1201812</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I think u will have to further process ur internal table in which u are getting data by SELECT statement.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at it_pa0001 into wa_it_pa0001.
  "here u make logic to delete the data from ur internal tabe
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Feb 2009 10:00:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-18T10:00:48Z</dc:date>
    <item>
      <title>checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193270#M1201784</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;1. is it possible to use &lt;STRONG&gt;NOT IN operator&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; for e.g  if i check few condition using  ( IN  operator ) and at the &lt;/P&gt;&lt;P&gt; same time want to check that is not there in my   ( IN operator)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else pls do let me know by saying how can this be done.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My query&lt;/P&gt;&lt;P&gt;========&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select pernr begda massn from pa0000 into corresponding fields of table it_pa0000&lt;/P&gt;&lt;P&gt;     WHERE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            MASSN in ('S1', 'S2', 'S3', 'S4', 'S7')&lt;/P&gt;&lt;P&gt;           &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; and massn not in  'S5' &lt;STRONG&gt;" this is wat the condition i want to check&lt;/STRONG&gt;             and pernr in so_pernr.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Elseif pr_sep = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select pernr begda from pa0000 into corresponding fields of table it_pa0000&lt;/P&gt;&lt;P&gt;     WHERE&lt;/P&gt;&lt;P&gt;           BEGDA &amp;lt;= SY-DATUM AND&lt;/P&gt;&lt;P&gt;           ENDDA  &amp;gt;= SY-DATUM AND&lt;/P&gt;&lt;P&gt;           MASSN in ('S5')&lt;/P&gt;&lt;P&gt;           and pernr in so_pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx &amp;amp; regards&lt;/P&gt;&lt;P&gt;Rachel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 06:36:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193270#M1201784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-18T06:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193271#M1201785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;write as :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select pernr begda massn from pa0000 into corresponding fields of table it_pa0000&lt;/P&gt;&lt;P&gt;WHERE&lt;/P&gt;&lt;P&gt;pernr in so_pernr&lt;/P&gt;&lt;P&gt;MASSN in ('S1', 'S2', 'S3', 'S4', 'S7')&lt;/P&gt;&lt;P&gt; and massn NE 'S5' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or create a range for MASSN ..&lt;/P&gt;&lt;P&gt;populate all the values for MASSN ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r_massn-sign = 'E'.  &amp;lt;-- for all other values pass 'I'  ...&lt;/P&gt;&lt;P&gt;r_massn-option = 'EQ'.&lt;/P&gt;&lt;P&gt;r_massn-low = 'S5'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append r_massn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in select just use  &lt;/P&gt;&lt;P&gt;select ....&lt;/P&gt;&lt;P&gt;where ...&lt;/P&gt;&lt;P&gt;massn in r_massn.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 06:41:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193271#M1201785</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-18T06:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193272#M1201786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;please see this thread for help&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="1212830"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 06:43:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193272#M1201786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-18T06:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193273#M1201787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rachel ,&lt;/P&gt;&lt;P&gt;It possible to use NOT IN operator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you need to write two select query and according to your requirement codes will be executed.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pinaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 06:44:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193273#M1201787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-18T06:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193274#M1201788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Rachel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For that you need to create the &lt;STRONG&gt;Ranges&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ranges: r_MASSN   type MASSN .

r_MASSN-sign = 'I'.
r_MASSN-option = 'EQ'.
r_MASSN-low     = 'S1'.
r_MASSN-high   = ''.
append r_MASSN.
clear r_MASSN.

r_MASSN-sign = 'I'.
r_MASSN-option = 'EQ'.
r_MASSN-low     = 'S2'.
r_MASSN-high   = ''.
append r_MASSN.
clear r_MASSN.

r_MASSN-sign = 'I'.
r_MASSN-option = 'EQ'.
r_MASSN-low     = 'S3'.
r_MASSN-high   = ''.
append r_MASSN.
clear r_MASSN.

r_MASSN-sign = 'I'.
r_MASSN-option = 'EQ'.
r_MASSN-low     = 'S4'.
r_MASSN-high   = ''.
append r_MASSN.
clear r_MASSN.

r_MASSN-sign = 'I'.
r_MASSN-option = 'NE'.    "Check this for S5
r_MASSN-low     = 'S5'.
r_MASSN-high   = ''.
append r_MASSN.
clear r_MASSN.

r_MASSN-sign = 'I'.
r_MASSN-option = 'EQ'.
r_MASSN-low     = 'S7'.
r_MASSN-high   = ''.
append r_MASSN.
clear r_MASSN.



your query 

Select pernr begda from pa0000 into corresponding fields of table it_pa0000
WHERE
BEGDA &amp;lt;= SY-DATUM AND
ENDDA &amp;gt;= SY-DATUM AND
MASSN in r_MASSN.   "here you will get your required data.
and pernr in so_pernr.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 06:46:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193274#M1201788</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-18T06:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193275#M1201789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you there should not any problem using NOT IN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select pernr begda massn from pa0000 into corresponding fields of table it_pa0000&lt;/P&gt;&lt;P&gt;WHERE&lt;/P&gt;&lt;P&gt;MASSN in ('S1', 'S2', 'S3', 'S4', 'S7') and&lt;/P&gt;&lt;P&gt;MASSN NOT IN ('S5').&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 06:50:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193275#M1201789</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-18T06:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193276#M1201790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rachel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This would help..kindly chk..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Select pernr begda massn from pa0000 
into corresponding fields of table it_pa0000
WHERE  MASSN in ('S1', 'S2', 'S3', 'S4', 'S7')
and massn NE S5.
"chk return code sy-subrc...

*if S5 is a select option then
s5-sign = 'E'.
modify s5 transporting sign where sign eq 'I'.
 "by this S5 contains only excluded values i.e 'not in' ..thn perform select query..as

Select pernr begda massn from pa0000 
into corresponding fields of table it_pa0000
WHERE  MASSN in ('S1', 'S2', 'S3', 'S4', 'S5','S7')

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mdi.Deeba&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Mdi.Deeba on Feb 18, 2009 7:53 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Mdi.Deeba on Feb 18, 2009 7:53 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 06:52:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193276#M1201790</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-18T06:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193277#M1201791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi thanx for the reply &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I made the changes as u said but then its getting me &lt;/P&gt;&lt;P&gt;an *error saying*&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*The IN operator with "R_MASSN" is followed neither by an internal table*&lt;/P&gt;&lt;P&gt;*nor by a value list.*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: s_massn TYPE RANGE OF CHAR10,&lt;/P&gt;&lt;P&gt;          r_massn LIKE LINE OF s_massn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r_massn-sign = 'E'. " &amp;lt;-- for all other values pass 'I' ...&lt;/P&gt;&lt;P&gt;r_massn-option = 'EQ'.&lt;/P&gt;&lt;P&gt;r_massn-low = 'S5'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append r_massn to s_massn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select pernr begda massn from pa0000 into corresponding fields of table it_pa0000&lt;/P&gt;&lt;P&gt;     WHERE&lt;/P&gt;&lt;P&gt;MASSN in ('S1', 'S2', 'S3', 'S4', 'S7')&lt;/P&gt;&lt;P&gt;            and massn in r_massn      ---&amp;gt; &lt;STRONG&gt;error&lt;/STRONG&gt;             and pernr in so_pernr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 06:57:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193277#M1201791</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-18T06:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193278#M1201792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a sample code done to exclude specific order nos. Jus replace the same with S5(in ur case) and it will work. Create the corresponding internal table according to the data type of S5.&lt;/P&gt;&lt;P&gt;Your problem will be solved&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RANGES: r_ordno FOR wa_ordno-ordno.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LOOP AT it_ordno INTO wa_ordno. "Say you have ord no in tab it_ordno&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  r_ordno-sign = 'I'.&lt;/P&gt;&lt;P&gt;  r_ordno-option = 'EQ'.&lt;/P&gt;&lt;P&gt;  r_ordno-low = wa_ordno-ordno.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  APPEND r_ordno.&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;SELECT *   FROM AUFK&lt;/P&gt;&lt;P&gt;                  INTO TABLE it_tab&lt;/P&gt;&lt;P&gt;                 WHERE ordno NOT IN r_ordno.&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;Priti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 07:00:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193278#M1201792</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-18T07:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193279#M1201793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declare ranges like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Ranges: r_massn for pa0000-massn.

Select pernr begda massn from pa0000 into corresponding fields of table it_pa0000
WHERE
MASSN in ('S1', 'S2', 'S3', 'S4', 'S7')
and massn in r_massn.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 07:00:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193279#M1201793</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2009-02-18T07:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193280#M1201794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try what I have suggest above or do the below changes in the code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: s_massn TYPE RANGE OF CHAR10,&lt;/P&gt;&lt;P&gt;r_massn LIKE LINE OF s_massn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r_massn-sign = 'E'. " &amp;lt;-- for all other values pass 'I' ...&lt;/P&gt;&lt;P&gt;r_massn-option = 'EQ'.&lt;/P&gt;&lt;P&gt;r_massn-low = 'S5'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append r_massn to s_massn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select pernr begda massn from pa0000 into corresponding fields of table it_pa0000&lt;/P&gt;&lt;P&gt;WHERE&lt;/P&gt;&lt;P&gt;MASSN in ('S1', 'S2', 'S3', 'S4', 'S7')&lt;/P&gt;&lt;P&gt;and massn in &lt;STRONG&gt;s_massn&lt;/STRONG&gt; ---&amp;gt; error and pernr in so_pernr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 07:01:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193280#M1201794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-18T07:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193281#M1201795</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;Use the select query given below this works...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Select pernr begda massn from pa0000 into corresponding fields of table it_pa0000
WHERE NOT MASSN in 'S5'.&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, 18 Feb 2009 07:02:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193281#M1201795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-18T07:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193282#M1201796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry this doesnt works&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 07:04:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193282#M1201796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-18T07:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193283#M1201797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx not in operator doesnt works for me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 07:05:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193283#M1201797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-18T07:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193284#M1201798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx but&lt;/P&gt;&lt;P&gt;neither&lt;/P&gt;&lt;P&gt; and not  massn  in ('S5')&lt;/P&gt;&lt;P&gt;or not in massn ('s5') works for me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 07:06:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193284#M1201798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-18T07:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193285#M1201799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select pernr begda massn from pa0000 into corresponding fields of table it_pa0000&lt;/P&gt;&lt;P&gt;WHERE&lt;/P&gt;&lt;P&gt;MASSN in ('S1', 'S2', 'S3', 'S4', 'S7') and&lt;/P&gt;&lt;P&gt;MASSN NOT IN ('S5').&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 07:06:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193285#M1201799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-18T07:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193286#M1201800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is ur problem solved.&lt;/P&gt;&lt;P&gt;If not then do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RANGES: r_massn FOR PA0000-massn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r_massn-sign = 'I'.&lt;/P&gt;&lt;P&gt;r_massn-option = 'EQ'.&lt;/P&gt;&lt;P&gt;r_massn-low = 'S5'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND r_massn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select pernr begda massn from pa0000 into corresponding fields of table it_pa0000&lt;/P&gt;&lt;P&gt;WHERE&lt;/P&gt;&lt;P&gt;MASSN in ('S1', 'S2', 'S3', 'S4', 'S7') and&lt;/P&gt;&lt;P&gt;MASSN NOT IN r_massn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: priti suryawanshi on Feb 18, 2009 8:11 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 07:07:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193286#M1201800</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-18T07:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193287#M1201801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi thanx for the reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried  but i am getting a error as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"FOR ... ." or "FOR ... OCCURS ... ." expected after "R_MASSN".&lt;/STRONG&gt; near &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ranges: r_MASSN   type MASSN .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont know this ...and iam just trying ...can u pls guide me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx alot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 07:11:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193287#M1201801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-18T07:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193288#M1201802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
Tables PA0000.

Ranges : r_massn for pa0000-massn.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 07:13:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193288#M1201802</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2009-02-18T07:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: checking Not in operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193289#M1201803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Range is what you need for your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raghav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2009 07:16:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checking-not-in-operator/m-p/5193289#M1201803</guid>
      <dc:creator>former_member182354</dc:creator>
      <dc:date>2009-02-18T07:16:12Z</dc:date>
    </item>
  </channel>
</rss>

