<?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: logical operator in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/logical-operator/m-p/3216256#M766915</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't think of any way to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Jan 2008 22:08:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-08T22:08:50Z</dc:date>
    <item>
      <title>logical operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logical-operator/m-p/3216253#M766912</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;Can we use logical operator in where clause of select statement?????&lt;/P&gt;&lt;P&gt;My requirement is i want to CA logical operator in select statement.Is there any possibility????????&lt;/P&gt;&lt;P&gt;If there please tell me???????????\&lt;/P&gt;&lt;P&gt;Nice answers reward with maxi points.................&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 19:29:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logical-operator/m-p/3216253#M766912</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T19:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: logical operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logical-operator/m-p/3216254#M766913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this: -&lt;/P&gt;&lt;P&gt;Declare a range say r_matnr with conditions like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SIGN  OPTION  LOW       HIGH      &lt;/P&gt;&lt;P&gt;E     CP      1234567890       &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this range in the where condition with "IN" clause like "where matnr in r_matnr"       &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Cheers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Prakash Bhatia on Jan 8, 2008 2:46 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 19:42:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logical-operator/m-p/3216254#M766913</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T19:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: logical operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logical-operator/m-p/3216255#M766914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Subash,&lt;/P&gt;&lt;P&gt;Prakash is right with his idea to go by range,&lt;/P&gt;&lt;P&gt;but it won't work like this.&lt;/P&gt;&lt;P&gt;Instead build your range like this:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ranges r_matnr for Tnnnn-MATNR.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;r_matnr-sign = 'I'.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;r_matnr-option = 'BT'.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;r_matnr-low = '0'.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;r_matnr-high = '9999999999'.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt; "max length of matnr filled with 9&lt;/P&gt;&lt;P&gt;&lt;EM&gt;APPEND r_matnr.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then &lt;/P&gt;&lt;P&gt;&lt;EM&gt;SELECT * FROM Tnnnn WHERE MATNR IN r_matnr&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;AND ......&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will get you only those entries with plain numerical MATNR.&lt;/P&gt;&lt;P&gt;For the opposit selection, just replace 'I' wit 'E' in r_matnr-option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope that helps.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;JW&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Joerg Wulf on Jan 8, 2008 10:43 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 20:49:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logical-operator/m-p/3216255#M766914</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T20:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: logical operator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logical-operator/m-p/3216256#M766915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't think of any way to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 22:08:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logical-operator/m-p/3216256#M766915</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T22:08:50Z</dc:date>
    </item>
  </channel>
</rss>

