<?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 Case sensitive problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive-problem/m-p/7450287#M1552818</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;    I'm having a ztable, In that table has  value like 'John Peter' ie mixed with caps and samll letters. how i pick the values in select query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vallamuthu.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Nov 2010 06:21:19 GMT</pubDate>
    <dc:creator>vallamuthu_madheswaran2</dc:creator>
    <dc:date>2010-11-23T06:21:19Z</dc:date>
    <item>
      <title>Case sensitive problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive-problem/m-p/7450287#M1552818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;    I'm having a ztable, In that table has  value like 'John Peter' ie mixed with caps and samll letters. how i pick the values in select query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vallamuthu.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 06:21:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive-problem/m-p/7450287#M1552818</guid>
      <dc:creator>vallamuthu_madheswaran2</dc:creator>
      <dc:date>2010-11-23T06:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: Case sensitive problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive-problem/m-p/7450288#M1552819</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;Translate selection screen field value into uper case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fetch all data from Ztable and translate into upper case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using read table statement you can fetch the correct text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TRANSLATE S_TEXT TO UPPER CASE.
           TRANSLATE ITAB-TEXT TO UPPER CASE.
           READ TABLE ITAB WITH KEY TEXT = S_TEXT&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thynaks and Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 06:28:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive-problem/m-p/7450288#M1552819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-23T06:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Case sensitive problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive-problem/m-p/7450289#M1552820</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;here is a short sample code with EXEC SQL:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
report  zsget_lfa1.
                                                                                types: begin of xl,
         lifnr     type lfa1-lifnr,
         name1     type lfa1-name1,
         stras     type lfa1-stras,
       end   of xl.
                                                                                data:  xsl type xl.
                                                                                parameters: xp_name1          type  lfa1-name1 default 'In*'.
parameters: xp_stras          type  lfa1-stras default '*Se*'.
                                                                                start-of-selection.
                                                                                translate  xp_name1        to  upper case.
     translate  xp_name1     using  '*%'.
     translate  xp_stras        to  upper case.
     translate  xp_stras     using  '*%'.
                                                                                EXEC SQL                     PERFORMING  list.
       SELECT LIFNR, NAME1, STRAS
                              INTO  :xsl
                              FROM  LFA1
       WHERE  UPPER( NAME1 )  LIKE  :xp_name1
       AND    UPPER( STRAS )  LIKE  :xp_stras
     ENDEXEC.
                                                                                END-OF-SELECTION.
                                                                                FORM list.
                                                                                WRITE:                   /1  xsl-lifnr,
                                    xsl-name1,
                                    xsl-stras.
                                                                                ENDFORM.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Nov 2010 06:40:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/case-sensitive-problem/m-p/7450289#M1552820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-23T06:40:42Z</dc:date>
    </item>
  </channel>
</rss>

