<?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: simple logic in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic/m-p/2576473#M588817</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : begin of x_range,&lt;/P&gt;&lt;P&gt;      SIGN                TYPE DDSIGN ,&lt;/P&gt;&lt;P&gt;      OPTION              TYPE DDOPTION,&lt;/P&gt;&lt;P&gt;       low type i,&lt;/P&gt;&lt;P&gt;       high type i,&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;       end of x_range.&lt;/P&gt;&lt;P&gt;ranges : r_value for i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;x_value-low = 8000.&lt;/P&gt;&lt;P&gt;x_value-high = 8500.&lt;/P&gt;&lt;P&gt;x_value-opt = 'E'.&lt;/P&gt;&lt;P&gt;x_value-sigh = 'BT'&lt;/P&gt;&lt;P&gt;append x_range to r_value.&lt;/P&gt;&lt;P&gt;repeat this for all set of values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not x in r_value.&lt;/P&gt;&lt;P&gt;your logic.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        I Can Solve It&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        I Can Solve It&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Jul 2007 21:33:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-23T21:33:55Z</dc:date>
    <item>
      <title>simple logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic/m-p/2576471#M588815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;its an error if the variable x does not lie in a set of numbers like,&lt;/P&gt;&lt;P&gt;ie, x must be in between 8000 to 8500 or 9000 and 9500 &lt;/P&gt;&lt;P&gt;or 10000 and 10500 etc this way there are a 6  set of ranges.&lt;/P&gt;&lt;P&gt;so can any one help  how to do this,&lt;/P&gt;&lt;P&gt;i thought of doing like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not ( 8000 &amp;lt; x &amp;lt; 8500 ).&lt;/P&gt;&lt;P&gt;if not ( 8000 &amp;lt; x &amp;lt; 8500 ).&lt;/P&gt;&lt;P&gt;if not ( 9000 &amp;lt; x &amp;lt; 9500 ).&lt;/P&gt;&lt;P&gt;if not ( 10000 &amp;lt; x &amp;lt; 10500 ).&lt;/P&gt;&lt;P&gt;if not ( 11000 &amp;lt; x &amp;lt; 11500 ).&lt;/P&gt;&lt;P&gt;if not ( 12000 &amp;lt; x &amp;lt; 12500 ).&lt;/P&gt;&lt;P&gt;e_flag = 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i doubt will it work, dont know, can some one suggest a proffessional way.&lt;/P&gt;&lt;P&gt;thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 21:29:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic/m-p/2576471#M588815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T21:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: simple logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic/m-p/2576472#M588816</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;ranges : r_value for i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r_value-low = 8000.&lt;/P&gt;&lt;P&gt;r_value-high = 8500.&lt;/P&gt;&lt;P&gt;append r_value.&lt;/P&gt;&lt;P&gt;repeat this for all set of values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not x in r_value.&lt;/P&gt;&lt;P&gt;your logic.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        I Can Solve It&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 21:32:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic/m-p/2576472#M588816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T21:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: simple logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic/m-p/2576473#M588817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : begin of x_range,&lt;/P&gt;&lt;P&gt;      SIGN                TYPE DDSIGN ,&lt;/P&gt;&lt;P&gt;      OPTION              TYPE DDOPTION,&lt;/P&gt;&lt;P&gt;       low type i,&lt;/P&gt;&lt;P&gt;       high type i,&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;       end of x_range.&lt;/P&gt;&lt;P&gt;ranges : r_value for i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;x_value-low = 8000.&lt;/P&gt;&lt;P&gt;x_value-high = 8500.&lt;/P&gt;&lt;P&gt;x_value-opt = 'E'.&lt;/P&gt;&lt;P&gt;x_value-sigh = 'BT'&lt;/P&gt;&lt;P&gt;append x_range to r_value.&lt;/P&gt;&lt;P&gt;repeat this for all set of values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not x in r_value.&lt;/P&gt;&lt;P&gt;your logic.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        I Can Solve It&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        I Can Solve It&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 21:33:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic/m-p/2576473#M588817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T21:33:55Z</dc:date>
    </item>
    <item>
      <title>Re: simple logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic/m-p/2576474#M588818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF NOT&lt;/P&gt;&lt;P&gt;( ( 8000  &amp;lt; x &amp;lt;   8500 ) OR &lt;/P&gt;&lt;P&gt;  ( 9000  &amp;lt; x &amp;lt;   9500 ) OR &lt;/P&gt;&lt;P&gt;  ( 10000 &amp;lt; x &amp;lt; 10500 ) OR &lt;/P&gt;&lt;P&gt;  ( 11000 &amp;lt; x &amp;lt; 11500 ) OR &lt;/P&gt;&lt;P&gt;  ( 12000 &amp;lt; x &amp;lt; 12500 ) ).&lt;/P&gt;&lt;P&gt;e_flag = 1.   "&amp;lt;-----X does not fall in any of the range specified. This is a Error Case.&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;A.Singh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2007 01:52:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic/m-p/2576474#M588818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-24T01:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: simple logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic/m-p/2576475#M588819</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;Try this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT ( INT &amp;gt;= 8000  AND INT &amp;lt;= 8500  ) AND&lt;/P&gt;&lt;P&gt;     NOT ( INT &amp;gt;= 10000 AND INT &amp;lt;= 10500 ) AND&lt;/P&gt;&lt;P&gt;     NOT ( INT &amp;gt;= 11000 AND INT &amp;lt;= 11500 ) AND&lt;/P&gt;&lt;P&gt;     NOT ( INT &amp;gt;= 12000 AND INT &amp;lt;= 12500 ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&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;&lt;/P&gt;&lt;P&gt;Marcelo Ramos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2007 11:27:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-logic/m-p/2576475#M588819</guid>
      <dc:creator>marcelo_ramos1</dc:creator>
      <dc:date>2007-07-24T11:27:42Z</dc:date>
    </item>
  </channel>
</rss>

