<?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: Uppercase conversion in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498535#M231161</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich,&lt;/P&gt;&lt;P&gt;Thanks a lot for your valuable answer.&lt;/P&gt;&lt;P&gt;I have only one option left wherein i need to uncheck the lowercase checkbox for the domain. &lt;/P&gt;&lt;P&gt;But if I want to use The TRANSLATE command where can I use it in this case(customer creation).&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Aug 2006 19:24:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-08T19:24:42Z</dc:date>
    <item>
      <title>Uppercase conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498529#M231155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;i have a requirement wherin the user enters the values in lowercase letters for the address fields in the customer creation which needs to be converted to the uppercase.i tried using the command TRANSLATE (in the user exit include).but when i displayed the customer details using VD03 the details were in lowercase letters.&lt;/P&gt;&lt;P&gt;Is there any way to save them in the uppercase letters so that the details are displayed in the uppercase.or when i press enter the details should get converted to the uppercase.&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Sandeep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 18:59:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498529#M231155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T18:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: Uppercase conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498530#M231156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TRANSLATE Tablename-Fieldname TO UPPER CASE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this forum &lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="181290"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;something to add, goto SE37 search enter this string &lt;STRONG&gt;UPPER&lt;/STRONG&gt;CASE* and press F4 u can find some Function modules which can help you to convert&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please reward points if found helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rahul Kavuri&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 19:01:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498530#M231156</guid>
      <dc:creator>rahulkavuri</dc:creator>
      <dc:date>2006-08-08T19:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: Uppercase conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498531#M231157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use this FM AIPC_CONVERT_TO_UPPERCASE Which will take care of local language also.but pass the same parameter in the input and output , so that the field value will be changes to Uppercase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or post  your part of code where you are doing transalation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 19:04:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498531#M231157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T19:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Uppercase conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498532#M231158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This kind of thing is usually handled by the DOMAIN which is tied to the DATA ELEMENT of the field in question.  Conversion is usually done automatically.  It can however be done explicitly using the TRANSLATE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, take this program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.


parameters: p_file type localfile.

write:/ p_file.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The dataelment here is localfile which uses the domain LOCALFILE which has the "Lowercase" checkbox checked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now lets take the same progam and change the type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.


parameters: p_file(100) type c default 'C:text.xls'.



write:/ p_file.




&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notice when running this program, the value is translated to uppercase automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, first make sure that the parameter on the selection screen does not have the "Lower case" extension.  NExt check the domain of the data element which the parameter is typed like,  if lowercase is checked, then this is why it is not being automatically translate to uppercase.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the TRANSLATE statement to translate it to uppercase, but probably not in a user exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 19:07:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498532#M231158</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-08T19:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: Uppercase conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498533#M231159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sandeep,&lt;/P&gt;&lt;P&gt;chk this link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04s/helpdata/en/d2/8acd409cc4dd50e10000000a1550b0/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04s/helpdata/en/d2/8acd409cc4dd50e10000000a1550b0/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;keerthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 19:19:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498533#M231159</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T19:19:34Z</dc:date>
    </item>
    <item>
      <title>Re: Uppercase conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498534#M231160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You tried in a user exit and it did not work?&lt;/P&gt;&lt;P&gt;Or the fields were not available for you?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In some of the customer and vendor master data user exits, only the master table fields are passed.  For instance, KNA1-NAME1, etc.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the user maintains the address with the "envelope" icon, some user exits do not pass these address fields.  I do not know which user exit you tried.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try the user exit for maintaining address fields.  In CMOD or SMOD, look at enhancement SZAD0001 and function module EXIT_SAPLSADR_001.  If you check for the customer transactions codes in this user exit (sy-tcode is XD01 or XD02), you might be able to TRANSLATE to UPPER CASE here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 19:22:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498534#M231160</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T19:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: Uppercase conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498535#M231161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich,&lt;/P&gt;&lt;P&gt;Thanks a lot for your valuable answer.&lt;/P&gt;&lt;P&gt;I have only one option left wherein i need to uncheck the lowercase checkbox for the domain. &lt;/P&gt;&lt;P&gt;But if I want to use The TRANSLATE command where can I use it in this case(customer creation).&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 19:24:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498535#M231161</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T19:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: Uppercase conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498536#M231162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Need more information,  are you working with a custom program with a selection screen?  IF so, then you can just translate the values in the AT SELECTION SCREEN event or in the begining of the START-OF-SELECTION event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 19:28:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498536#M231162</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-08T19:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: Uppercase conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498537#M231163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich,&lt;/P&gt;&lt;P&gt;I am not using a custom program for this.i think i need to make changes in the standard program to achieve this which may not be suggested.Any other solution?&lt;/P&gt;&lt;P&gt;Norman-&amp;gt; i am using the user exit ZXF04U01. Ihis could see the address fields in the user exit.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 19:35:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498537#M231163</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T19:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: Uppercase conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498538#M231164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The INCLUDE ZXF04U01 is part of enhancement SAPMF02D.  You cannot change the KNA1 fields in this user exit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 19:41:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498538#M231164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T19:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: Uppercase conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498539#M231165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was looking for other user exits and BAdI's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My first thought is BAdI CUSTOMER_ADD_DATA with method CHECK_ALL_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It passes KNA1 as an import parameter.  You cannot change the data, but...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could translate the address to upper case and save in Z variables.&lt;/P&gt;&lt;P&gt;Compare the KNA1 address to the saved Z address.  &lt;/P&gt;&lt;P&gt;If different, display an error message and make the user change the address to upper case.  The BAdI method allows you to pass a message back to the user.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 19:47:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uppercase-conversion/m-p/1498539#M231165</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T19:47:33Z</dc:date>
    </item>
  </channel>
</rss>

