<?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: Upper and lower case conversion in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618583#M276872</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;Before i execute the select statement i need the data to be converted to lowercase. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The thing is i can do the conversion after the select statement. Here i need to get some data from select statement and from the data we get here i need to write one more select statement which also to be displayed lowercase data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Oct 2006 09:21:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-03T09:21:11Z</dc:date>
    <item>
      <title>Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618579#M276868</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;I need small help on conversions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to convert the data in database tables to lower case. &lt;/P&gt;&lt;P&gt;Like i need to pick some data from a database table. The data stored in the database table is in uppercase. Here i need to convert the data to lowercase through the select statement. Is there any way to do this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 09:16:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618579#M276868</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T09:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618580#M276869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U can read the data from the table...convert to lower case and modify the table again. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE lchr TO LOWER CASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&amp;gt; I hope you dont have to translate the key fields even in that case u would need to delete the record and insert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Anurag Bankley&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 09:18:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618580#M276869</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T09:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618581#M276870</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;us this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;transalate &amp;lt;field&amp;gt; to lower case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;similarly u can convert to upper case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls mark hlpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 09:19:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618581#M276870</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-10-03T09:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618582#M276871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;loop at &amp;lt;internal_table&amp;gt; into &amp;lt;work_area&amp;gt;.
  TRANSLATE &amp;lt;work_area-field_name&amp;gt; to LOWER CASE.
  MODIFY &amp;lt;table&amp;gt; from &amp;lt;work_area&amp;gt;.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 09:20:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618582#M276871</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T09:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618583#M276872</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;Before i execute the select statement i need the data to be converted to lowercase. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The thing is i can do the conversion after the select statement. Here i need to get some data from select statement and from the data we get here i need to write one more select statement which also to be displayed lowercase data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 09:21:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618583#M276872</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T09:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618584#M276873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;before inserting to db, u can convert the data to lower case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 09:23:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618584#M276873</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-10-03T09:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618585#M276874</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;just write 2 select statements in that case.&lt;/P&gt;&lt;P&gt;After the first select you modify the data in the &lt;/P&gt;&lt;P&gt;table then select the changed data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 09:24:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618585#M276874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T09:24:36Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618586#M276875</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 my code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT addrnumber name1 city1 FROM adrc INTO TABLE i_adrc&lt;/P&gt;&lt;P&gt;WHERE name1 IN r_name1 AND city1 IN r_city1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF i_adrc IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;SELECT kunnr adrnr brsch bran1 land1 INTO TABLE i_kna1&lt;/P&gt;&lt;P&gt;FROM kna1 FOR ALL ENTRIES IN i_adrc &lt;/P&gt;&lt;P&gt;WHERE adrnr = i_adrc-addrnumber AND &lt;/P&gt;&lt;P&gt;      brsch IN r_brsch AND&lt;/P&gt;&lt;P&gt;      bran1 IN r_braco AND&lt;/P&gt;&lt;P&gt;      land1 IN r_land1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here after the first select statement i am not getting the required data as name1 is maintained in Uppercase in the database. SO i need to change the data to lowercase before the select statement itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 09:30:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618586#M276875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T09:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618587#M276876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the best way is to convert the data in your range r_name1 to uppercase and fetch the date from adrc table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at r_name1.&lt;/P&gt;&lt;P&gt;  translate r_name1-low to upper case.&lt;/P&gt;&lt;P&gt;  translate r_name1-high to upper case.&lt;/P&gt;&lt;P&gt;  modify r_name1.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 09:36:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618587#M276876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T09:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618588#M276877</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;It not peoblem with the ranges. The data in the database should be made nto lowercase before my select statement so that i will get all the data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 09:44:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618588#M276877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T09:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618589#M276878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is your problem that you need to convert the data in ADRC table into lower case OR fetching the data from ADRC ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 09:55:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618589#M276878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T09:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618590#M276879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ADRC-Name1 data should be converted to lowercase and need to get the requred data based on the select statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 09:59:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618590#M276879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T09:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618591#M276880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The only way is to do the below before your code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;select name1 into lname1 from adrc.&lt;/P&gt;&lt;P&gt;  translate lname1 to lower case.&lt;/P&gt;&lt;P&gt;  adrc-name1 = lname1.&lt;/P&gt;&lt;P&gt;  modify adrc.&lt;/P&gt;&lt;P&gt;endselect.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Anurag Bankley&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 10:01:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618591#M276880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T10:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618592#M276881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Anurag,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select name1 from adrc.&lt;/P&gt;&lt;P&gt;translate adrc-name1 to lower case.&lt;/P&gt;&lt;P&gt;update adrc.&lt;/P&gt;&lt;P&gt;endselect. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above statement is giving error as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Field list without into clause is not allowed. Itab or into(f1....fn) is not allowed..Can you pls correct me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 10:07:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618592#M276881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T10:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618593#M276882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;As far as I understood, Ur problem is getting all the data be it lower case or uppercase in ADRC table for the range... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you can try... &lt;/P&gt;&lt;P&gt;Select &amp;lt;fields&amp;gt; from ADRC &lt;/P&gt;&lt;P&gt;where name1 LIKE &amp;lt;range field&amp;gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Rashmi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 10:08:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618593#M276882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T10:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618594#M276883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anurag,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But its taking much time to execute the select statement. Is there any other simple way of doing this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 10:31:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618594#M276883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T10:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618595#M276884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually it would as you want to update all the records in ADRC table...I am not sure why you wish to update all the database table records in lower case...you can easily fetch your data if you change the range to use upper case and manipulate the same in report when required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To change the range check my earlier code and you would be able to get the data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 10:34:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618595#M276884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T10:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618596#M276885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ANurag,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even after changing the range field as you said its giving the data which is in UPPER case for the name1 field. I need all the data for name1 with lower and upper case as well. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 10:49:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618596#M276885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T10:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618597#M276886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, it would give you in upper case but once you have fetched the data you can convert it into lower case using the TRANSLATE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second option is when you are updating ADRC do it for the required records only.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 10:52:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618597#M276886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T10:52:59Z</dc:date>
    </item>
    <item>
      <title>Re: Upper and lower case conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618598#M276887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anurag,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is, I have both upper case and Lower case data in ADRC-name1 field. I am searching for some records with string 'good'. Once i execute the select statement its fetching only the Uppercase data. Here i need all the records with upper as well as lower case for 'good' as the string. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am writing this in function mofdule and so it takes only uppercase search even if we give that in lower case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you understood my question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Oct 2006 11:03:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upper-and-lower-case-conversion/m-p/1618598#M276887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-03T11:03:23Z</dc:date>
    </item>
  </channel>
</rss>

