‎2008 Sep 02 7:26 AM
Hi experts
I amm using the Translate to Uppercase command in my program, when i check in code inspector
I am getting the error message as "Dangerous use of translate in multilingual system"
how to avoid this and how to rewrite this statement. I am using for matnr to uppercase
thanks in advance
sai
‎2008 Sep 02 9:06 AM
Try this code:
* set locale for given language (needed for upper-case translation)
SET LOCALE LANGUAGE sy-langu.
* translate to upper-case
TRANSLATE <String> TO UPPER CASE.
‎2008 Sep 02 9:22 AM
Press F1 on Upper case and read the Note of SAP help.your will get the reason of this error.
Amit.
‎2008 Sep 24 6:30 AM