<?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 statement query... ! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-query/m-p/3131660#M743963</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can anything like this can be done, as in the case of Contains Pattern (CP) it is done like '#D#%'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u suggest for the single like stmt.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 24 Nov 2007 04:53:33 GMT</pubDate>
    <dc:creator>naveenvishal</dc:creator>
    <dc:date>2007-11-24T04:53:33Z</dc:date>
    <item>
      <title>select statement query... !</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-query/m-p/3131657#M743960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;im giving the select stmt  as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select ..... where name like 'D%'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to eleminate caps lock defferentaion, so that all records with 'D' or with 'd' will be selected.&lt;/P&gt;&lt;P&gt;i want to include that in SINGLE LIKE only, not like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select ..... where name like 'D%' or name like 'd%'.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------" /&gt;&lt;P&gt;Kindly suggest if can b achieved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx,&lt;/P&gt;&lt;P&gt;Naveen VIshal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Nov 2007 04:43:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-query/m-p/3131657#M743960</guid>
      <dc:creator>naveenvishal</dc:creator>
      <dc:date>2007-11-24T04:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: select statement query... !</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-query/m-p/3131658#M743961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes it could be achieved as you have decided.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select ..... where name like 'D%' or name like 'd%'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: l_maktx TYPE maktx.

SELECT SINGLE maktx
 INTO l_maktx
 FROM makt
 WHERE ( maktx LIKE 'D%'
 OR maktx LIKE 'd%' ).
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Nov 2007 04:45:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-query/m-p/3131658#M743961</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-11-24T04:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: select statement query... !</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-query/m-p/3131659#M743962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think If you keep 'D%' in your where clause it will consider both 'D%' &amp;amp; 'd%', need not to specify seperately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Nov 2007 04:46:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-query/m-p/3131659#M743962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-24T04:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: select statement query... !</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-query/m-p/3131660#M743963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can anything like this can be done, as in the case of Contains Pattern (CP) it is done like '#D#%'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u suggest for the single like stmt.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Nov 2007 04:53:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-query/m-p/3131660#M743963</guid>
      <dc:creator>naveenvishal</dc:creator>
      <dc:date>2007-11-24T04:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: select statement query... !</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-query/m-p/3131661#M743964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do it like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Where Field1 like '%D%'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it will bring on the data where Field1 contains the D.. no matter in which place weather 1st or 4th or lat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Nov 2007 05:00:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-query/m-p/3131661#M743964</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-11-24T05:00:24Z</dc:date>
    </item>
    <item>
      <title>Re: select statement query... !</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-query/m-p/3131662#M743965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yaar, what about the capital letter avoidance condtion..i need both 'D' as well as 'd'..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx,&lt;/P&gt;&lt;P&gt;Naveen VIshal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Nov 2007 05:05:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-query/m-p/3131662#M743965</guid>
      <dc:creator>naveenvishal</dc:creator>
      <dc:date>2007-11-24T05:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: select statement query... !</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-query/m-p/3131663#M743966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For D and d you have to use it like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Where ( Field1 like '%D%' or field1 like '%d' ).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Nov 2007 05:08:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-query/m-p/3131663#M743966</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-11-24T05:08:00Z</dc:date>
    </item>
  </channel>
</rss>

