<?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: Convert data to Proper Case in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-data-to-proper-case/m-p/4220299#M1008370</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;             As far as i know i dont think SAP has a function module for that.&lt;/P&gt;&lt;P&gt;To convert given string go through this link which uses TRANSFER command.&lt;/P&gt;&lt;P&gt;[Converting to Upper or Lower Case|http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb33a5358411d1829f0000e829fbfe/content.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its better you create a function module including this statement as shown in the above link and use it as per your requirement or directly use as stated in the above link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this would help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Narin Nandivada&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Jul 2008 17:07:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-17T17:07:14Z</dc:date>
    <item>
      <title>Convert data to Proper Case</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-data-to-proper-case/m-p/4220298#M1008369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a function module, etc. to help convert names, etc. from UPPER CASE to Proper Case existing within SAP already?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 16:57:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-data-to-proper-case/m-p/4220298#M1008369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T16:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: Convert data to Proper Case</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-data-to-proper-case/m-p/4220299#M1008370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;             As far as i know i dont think SAP has a function module for that.&lt;/P&gt;&lt;P&gt;To convert given string go through this link which uses TRANSFER command.&lt;/P&gt;&lt;P&gt;[Converting to Upper or Lower Case|http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb33a5358411d1829f0000e829fbfe/content.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its better you create a function module including this statement as shown in the above link and use it as per your requirement or directly use as stated in the above link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this would help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Narin Nandivada&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 17:07:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-data-to-proper-case/m-p/4220299#M1008370</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T17:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: Convert data to Proper Case</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-data-to-proper-case/m-p/4220300#M1008371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try FM 'STRING_UPPER_LOWER_CASE'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nisarg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 20:49:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-data-to-proper-case/m-p/4220300#M1008371</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T20:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: Convert data to Proper Case</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-data-to-proper-case/m-p/4220301#M1008372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check this :&lt;/P&gt;&lt;P&gt;*Capitalization conversion  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'STRING_UPPER_LOWER_CASE' 
 EXPORTING  
   DELIMITER = P_DEM 
   STRING1   = P_STR                   " Lower case 'String' 
 IMPORTING 
   STRING    = P_STR                   " Upper case 'String' 
 EXCEPTIONS
   NOT_VALID = 1 
   TOO_LONG  = 2  
   TOO_SMALL = 3  
   OTHERS    = 4.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Adil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 04:54:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-data-to-proper-case/m-p/4220301#M1008372</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T04:54:50Z</dc:date>
    </item>
  </channel>
</rss>

