cancel
Showing results for 
Search instead for 
Did you mean: 

Problem with codepage

Former Member
0 Kudos

Hello,

I have a problem with codepage in EP with webdynpro java.

In SAP Netweaver Developerstudio the codepage is UTF-8

Here the problem, that the text in .properties-File with umlauts are incorrect. If I change the codepage in NDS to ISO-8859-1 it works for the own text correctly.

But the text with umlauts for the standard sap text message (e.g. validat an inputfield) don't correctly.

I see, changing codepage in NDS don't solved my problem.

Where is the problem?

I think it's a simple solution...

Regards

Maik

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

hello Maik

Usually I use native2ascii program from jdk to convert such symbols. The program changes umlaut characters within text as ü - \u00FC, ö - \u00F6, ß - \u00DF, ä - \u00E4 that are correctly displayed then.

Or you can use the following tools http://www.blooberry.com/indexdot/html/topics/urlencoding.htm to get code of umlaut symbols and add them manually as \u00 into .properties file.

hope it helps,

Sergey