‎2006 Aug 23 9:59 AM
can anyone give FM to convert From lower case to upper case letters ..
‎2006 Aug 23 10:00 AM
Use the keyword TRANSLATE.
Pl check this
<a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/fc/eb33a5358411d1829f0000e829fbfe/frameset.htm">SAP Help</a>
~Suresh
‎2006 Aug 23 10:00 AM
Use the keyword TRANSLATE.
Pl check this
<a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/fc/eb33a5358411d1829f0000e829fbfe/frameset.htm">SAP Help</a>
~Suresh
‎2006 Aug 23 10:04 AM
TRANSLATE c TO UPPER CASE.
TRANSLATE c TO LOWER CASE.
======
DATA letters(3) TYPE C.
MOVE 'abc' TO letters.
TRANSLATE letters TO UPPER CASE.
letters now has the contents 'ABC'.
‎2006 Aug 23 10:04 AM
‎2006 Aug 23 10:09 AM
VJ, if ht ere is a normal function like translate is available, do you recoment to use function module like "AIPC_CONVERT_TO_UPPERCASE"? Please advise as it will help all.
‎2006 Aug 23 10:05 AM
Hi,
you can use this stmnt
TRANSLATE <c> TO UPPER CASE.
regards,
Sumit.
‎2006 Aug 23 10:07 AM
Hey vj_bb,
can you give me the reason why you want to use a FM?
If FM is not really desired try the ABAP-statement "translate":
"TRANSLATE text {TO {UPPER|LOWER} CASE}
| {USING mask}."
and see the F1-help for more information.
Greetings,
Achim
‎2006 Aug 23 10:08 AM
hi,
This FM translates from lower case to upper case.
<b> EDITOR_LINE_TRANSLATE_CASE</b>
Regards,
Sailaja.
‎2006 Aug 23 10:09 AM
Try this example
DATA letters(3) TYPE C.
MOVE 'abc' TO letters.
TRANSLATE letters TO UPPER CASE.
Give points if helpfull
Regards
‎2006 Aug 23 10:15 AM