<?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 lowercase. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-lowercase/m-p/5840238#M1317847</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;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi experts ,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt;  i need to select a record from a table using the lower case statement as follows :&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Data : wa_value type pa0006.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; select single * from  pa0006 into wa_value where lowercase (stras) = 'abcd'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select single * from  pa0006 into wa_value 
where (stras+1(1) = 'a' or 'A') and
            (stras+2(1) = 'b' or 'B') and
            (stras+3(1) = 'c' or 'C') and
            (stras+4(1) = 'd' or 'D').&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps. Let me know if it works.&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;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Anand Patil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Jul 2009 18:01:10 GMT</pubDate>
    <dc:creator>former_member189420</dc:creator>
    <dc:date>2009-07-07T18:01:10Z</dc:date>
    <item>
      <title>select lowercase.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-lowercase/m-p/5840237#M1317846</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; i need to select a record from a table using the lower case statement as follows :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : wa_value type pa0006.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single * from  pa0006 into wa_value where lowercase (stras) = 'abcd'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stras is of type pad_stras .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i want to get the result of in the table pa0006 the valoe of stras = 'AbCD'  (abCd) ..etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not wirking in abap , so how to slove this problem ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ps : transalte to lowercase /upper case doesnt help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2009 17:43:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-lowercase/m-p/5840237#M1317846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-07T17:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: select lowercase.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-lowercase/m-p/5840238#M1317847</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;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi experts ,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt;  i need to select a record from a table using the lower case statement as follows :&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Data : wa_value type pa0006.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; select single * from  pa0006 into wa_value where lowercase (stras) = 'abcd'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select single * from  pa0006 into wa_value 
where (stras+1(1) = 'a' or 'A') and
            (stras+2(1) = 'b' or 'B') and
            (stras+3(1) = 'c' or 'C') and
            (stras+4(1) = 'd' or 'D').&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps. Let me know if it works.&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;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Anand Patil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2009 18:01:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-lowercase/m-p/5840238#M1317847</guid>
      <dc:creator>former_member189420</dc:creator>
      <dc:date>2009-07-07T18:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: select lowercase.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-lowercase/m-p/5840239#M1317848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Depending on your databse, you may be able to use native SQL to do this. It works in Oracle and DB6.&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, 07 Jul 2009 18:02:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-lowercase/m-p/5840239#M1317848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-07T18:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: select lowercase.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-lowercase/m-p/5840240#M1317849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What exactly you are trying to validate? PA0006 is the address infotype and maintained at the employee (pernr) level &amp;amp; can have more than one subtype. You cannot do a perfect &lt;EM&gt;select single&lt;/EM&gt; statement on pa0006, so you can do your validation inside the select..endselect loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2009 18:46:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-lowercase/m-p/5840240#M1317849</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2009-07-07T18:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: select lowercase.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-lowercase/m-p/5840241#M1317850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The select i have in my question is just an example .&lt;/P&gt;&lt;P&gt;i try to select from a z-table with a condition using lowercase, to check if the a record exists with the same  streetname, house number, postal code and city .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i know it working only with native sql , but our database is sql server.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2009 20:05:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-lowercase/m-p/5840241#M1317850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-07T20:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: select lowercase.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-lowercase/m-p/5840242#M1317851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If it is a Z-table, have you looked at using the 'Lower Case' property at the domain level for the fields in question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2009 21:27:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-lowercase/m-p/5840242#M1317851</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2009-07-07T21:27:43Z</dc:date>
    </item>
  </channel>
</rss>

