<?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: Help String Function To Upper in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864760#M48778</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok. But how can i translate the variable string?&lt;/P&gt;&lt;P&gt;I want both variables (str &amp;amp; string) to translate to upper case!&lt;/P&gt;&lt;P&gt;How about that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 May 2005 09:58:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-05-23T09:58:28Z</dc:date>
    <item>
      <title>Help String Function To Upper</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864756#M48774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to edit a string by using a function like UpperCase or LowerCase. Is there any function in ABAP which has the same functionality?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next problem is:&lt;/P&gt;&lt;P&gt;Can i use this function in an SQL query? &lt;/P&gt;&lt;P&gt;Like:        Select SINGLE IDSEGMENT&lt;/P&gt;&lt;P&gt;             FROM Table&lt;/P&gt;&lt;P&gt;             INTO IDSEG&lt;/P&gt;&lt;P&gt;             WHERE Upcase(string1) =  Upcase(string2).&lt;/P&gt;&lt;P&gt;Is this possible? &lt;/P&gt;&lt;P&gt;Problem is that in the DB the string1 is spelled different (capital letters) than string2&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2005 09:46:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864756#M48774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-23T09:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: Help String Function To Upper</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864757#M48775</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;Try this out&lt;/P&gt;&lt;P&gt;*Code to demonstrate TRANSLATE to UPPER/LOWER CASE command&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------" /&gt;&lt;P&gt;DATA: ld_char(20) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ld_char = 'Hello World'.&lt;/P&gt;&lt;P&gt;TRANSLATE ld_char TO UPPER CASE. "Result: ld_char = 'HELLO WORLD'&lt;/P&gt;&lt;P&gt;TRANSLATE ld_char TO LOWER CASE. "Result: ld_char = 'hello world'  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/fc/eb33a5358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/fc/eb33a5358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Judith.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2005 09:50:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864757#M48775</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-23T09:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: Help String Function To Upper</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864758#M48776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Judith,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but this was only my first problem,&lt;/P&gt;&lt;P&gt;any proposal for my second problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2005 09:52:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864758#M48776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-23T09:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: Help String Function To Upper</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864759#M48777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Translate str to upper case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select SINGLE IDSEGMENT&lt;/P&gt;&lt;P&gt;FROM Table&lt;/P&gt;&lt;P&gt;INTO IDSEG&lt;/P&gt;&lt;P&gt;WHERE string = str.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2005 09:56:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864759#M48777</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-05-23T09:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Help String Function To Upper</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864760#M48778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok. But how can i translate the variable string?&lt;/P&gt;&lt;P&gt;I want both variables (str &amp;amp; string) to translate to upper case!&lt;/P&gt;&lt;P&gt;How about that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2005 09:58:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864760#M48778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-23T09:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Help String Function To Upper</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864761#M48779</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;U cant use &amp;lt;b&amp;gt;Upcase&amp;lt;/b&amp;gt;(string1) = &amp;lt;b&amp;gt;Upcase&amp;lt;/b&amp;gt;(string2) in select query.&lt;/P&gt;&lt;P&gt;Can compare two strings thats all.Try removing that upcase and check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Judith.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2005 10:01:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864761#M48779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-23T10:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Help String Function To Upper</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864762#M48780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks but how u would solve this problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2005 10:01:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864762#M48780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-23T10:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: Help String Function To Upper</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864763#M48781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select your database table data into an internal table and use the FIND command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can then use the ignoring case keyword.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If less than basis 6.1 you can use SEARCH (but may have to convert internal table to uppercase before searching).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2005 10:12:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864763#M48781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-23T10:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Help String Function To Upper</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864764#M48782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIND doesn't really support internal tables, and SEARCH doesn't have IGNORING CASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you'll have to make a trade off between looping through your internal table and using FIND, or translating the internal table to uppercase and using SEARCH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I'd go for looping through your table and using FIND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2005 10:17:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864764#M48782</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-23T10:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: Help String Function To Upper</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864765#M48783</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;Use the string comparision operator CS in your select query which is not case-sensistive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2005 10:22:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864765#M48783</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-23T10:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: Help String Function To Upper</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864766#M48784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all for ur answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I solved the problem with the solution from Vijayakrishnan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marcus Pohl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2005 11:19:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864766#M48784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-23T11:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: Help String Function To Upper</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864767#M48785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all for ur answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But CS isn´t a valid comparison&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marcus Pohl&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2005 11:29:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864767#M48785</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-23T11:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: Help String Function To Upper</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864768#M48786</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;Try using LOWER(string1) = string &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also u can compare UPPER(string1) = String.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like this convert anyone of teh string to the other and try it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Judith.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2005 11:32:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864768#M48786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-23T11:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: Help String Function To Upper</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864769#M48787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I didn't think so...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you are stuck with the internal table approach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2005 11:33:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-string-function-to-upper/m-p/864769#M48787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-23T11:33:10Z</dc:date>
    </item>
  </channel>
</rss>

