<?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: SELECT-OPTIONS with pattern in interval in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-with-pattern-in-interval/m-p/12263288#M1987239</link>
    <description>&lt;P&gt;I already created a simple function to merge continuous value to recreate a "simplified" range, to prevent the max size of a RANGES&lt;/P&gt;&lt;P&gt;it replaces  0011 0012 0013 0015 to &lt;/P&gt;&lt;P&gt;I BT 0011 0013&lt;/P&gt;&lt;P&gt;I EQ 0015 &lt;/P&gt;&lt;P&gt;it is not so complex, and simplify the next SELECT statement&lt;/P&gt;</description>
    <pubDate>Wed, 30 Sep 2020 14:22:21 GMT</pubDate>
    <dc:creator>FredericGirod</dc:creator>
    <dc:date>2020-09-30T14:22:21Z</dc:date>
    <item>
      <title>SELECT-OPTIONS with pattern in interval</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-with-pattern-in-interval/m-p/12263283#M1987234</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;Is it possible to use patterns in an interval in a select-options?&lt;/P&gt;
  &lt;P&gt;I need to select a field filtering only by the last 5 characters.&lt;/P&gt;
  &lt;P&gt;I can use CP in select-options and the character + or * but is not working with intervals.&lt;/P&gt;
  &lt;P&gt;You can test it in se16 in table KNA1 for example:&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1849721-rango.png" /&gt;&lt;/P&gt;
  &lt;P&gt;Tried also with * but not working.&lt;/P&gt;
  &lt;P&gt;How would you do it efficiently by code?&lt;/P&gt;
  &lt;P&gt;SAP_ABA 731.&lt;/P&gt;
  &lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 11:48:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-with-pattern-in-interval/m-p/12263283#M1987234</guid>
      <dc:creator>oliver_am</dc:creator>
      <dc:date>2020-09-30T11:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT-OPTIONS with pattern in interval</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-with-pattern-in-interval/m-p/12263284#M1987235</link>
      <description>&lt;P&gt;? &amp;lt;-- replace 1 char&lt;/P&gt;&lt;P&gt;* &amp;lt;-- replace all char&lt;/P&gt;&lt;P&gt;if you do a *00070 to *00099, it should works&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 11:50:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-with-pattern-in-interval/m-p/12263284#M1987235</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2020-09-30T11:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT-OPTIONS with pattern in interval</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-with-pattern-in-interval/m-p/12263285#M1987236</link>
      <description>&lt;P&gt;Like this?&lt;/P&gt;&lt;P&gt;SIGN       I&lt;BR /&gt;OPTION       BT   "Tried also with CP&lt;BR /&gt;LOW       *0070&lt;BR /&gt;HIGH       *0099&lt;/P&gt;&lt;P&gt;Already tried before post, but is not working&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 12:11:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-with-pattern-in-interval/m-p/12263285#M1987236</guid>
      <dc:creator>oliver_am</dc:creator>
      <dc:date>2020-09-30T12:11:49Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT-OPTIONS with pattern in interval</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-with-pattern-in-interval/m-p/12263286#M1987237</link>
      <description>&lt;P&gt;Yep it does not work. &lt;/P&gt;&lt;P&gt;And certainly cannot work &lt;/P&gt;&lt;P&gt;Imagine you have the value 10070  20075 30099  &lt;/P&gt;&lt;P&gt;even if you try to do a split interval you will have to do &lt;/P&gt;&lt;P&gt;10070 -&amp;gt; 10099&lt;/P&gt;&lt;P&gt;20070 -&amp;gt; 20099&lt;/P&gt;&lt;P&gt;30070 -&amp;gt; 30099&lt;/P&gt;&lt;P&gt;and to have the list of intervals, you have to do a full SELECT on the database to know the list of possible intervals &lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 12:46:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-with-pattern-in-interval/m-p/12263286#M1987237</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2020-09-30T12:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT-OPTIONS with pattern in interval</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-with-pattern-in-interval/m-p/12263287#M1987238</link>
      <description>&lt;P&gt;i konw...&lt;BR /&gt;so the unique solution is to select all the records of the table (thousands...) and the filter the data in my program... &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I'll suggest functional team not using intervals in this field&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 14:02:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-with-pattern-in-interval/m-p/12263287#M1987238</guid>
      <dc:creator>oliver_am</dc:creator>
      <dc:date>2020-09-30T14:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT-OPTIONS with pattern in interval</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-with-pattern-in-interval/m-p/12263288#M1987239</link>
      <description>&lt;P&gt;I already created a simple function to merge continuous value to recreate a "simplified" range, to prevent the max size of a RANGES&lt;/P&gt;&lt;P&gt;it replaces  0011 0012 0013 0015 to &lt;/P&gt;&lt;P&gt;I BT 0011 0013&lt;/P&gt;&lt;P&gt;I EQ 0015 &lt;/P&gt;&lt;P&gt;it is not so complex, and simplify the next SELECT statement&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 14:22:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-with-pattern-in-interval/m-p/12263288#M1987239</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2020-09-30T14:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT-OPTIONS with pattern in interval</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-with-pattern-in-interval/m-p/12263289#M1987240</link>
      <description>&lt;P&gt;Select-options allows either wildcard or range, not a mix of 'LIKE' and 'BETWEEN'. In recent versions you can use a function as operand such as RIGHT( expr,len ) but define a special range in your selection-screen.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 30 Sep 2020 14:55:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-with-pattern-in-interval/m-p/12263289#M1987240</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2020-09-30T14:55:49Z</dc:date>
    </item>
  </channel>
</rss>

