Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Translate

Former Member
0 Likes
532

Hi Experts,

can any body tell me the alternate for Translate statement in ECC?

Becoz..Translate gives warning message in ECC..

Regards

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
507

HI,

see the below code .it is not giving any warnings to me.i am also using ECC only.

data:text(10) value 'NUMBER'.

TRANSLATE text to lower case.

write:/ text.

rgds,

bharat.

Hi Experts,

can any body tell me the alternate for Translate statement in ECC?

Becoz..Translate gives warning message in ECC..

Regards

3 REPLIES 3
Read only

Former Member
0 Likes
508

HI,

see the below code .it is not giving any warnings to me.i am also using ECC only.

data:text(10) value 'NUMBER'.

TRANSLATE text to lower case.

write:/ text.

rgds,

bharat.

Read only

0 Likes
507

Hi Thanks,

But i want to know is there any other way...

Read only

Former Member
0 Likes
507

check with below thread

/people/thomas.mann2/blog/2006/08/22/sap-upgrade-conflicts-1

<b>As new SAP systems are made Unicode enabled, there was an issue with translations done using ABAP code. Issue was with any Programs that uses TRANSLATE <string> TO UPPERCASE statement in a multi lingual environment. You might get a warning as dangerous use of TRANSLATE in Multi lingual environment. For this either we can use SET LOCALE LANGUAGE language, before the statement or use the Function Module AIPC_CONVERT_TO_UPPERCASE with the language parameter.</b>