Application Development 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: 

Web repository - problem with country letters

0 Kudos
594

Hello Experts,

I import by transaction SMW0 a file as html but I have problem with country letters (exactly polish letters). Unfortunately inside after imported the letters disappear (changing to different signs) and when I call function WWW_HTML_MERGER and open template in browser there aren't also correct letters.

3 REPLIES 3

Sandra_Rossi
Active Contributor
0 Kudos
533

It's all about the character encoding. You must know from end to end in which code page/character set the characters are encoded in your original file, how they are uploaded and stored in the MIME repository, how WWW_HTML_MERGER works with character encoding, and how it's displayed in the browser. If you could explain the context from end to end, maybe someone can better help.

Usually UTF-8 is the best format supported for the Web, so you should do a try for a quick win.

0 Kudos
533

The file html is coding in utf-16, I tried change this to utf-8 but it didn't change anything. Finally I can introduce html inside the code but it looks awfully 🙂

Sandra_Rossi
Active Contributor
0 Kudos
533

As I said, the character encoding error can be at any place in the workflow (upload, storage, reading, merging, outputting). You'd better provide the exact workflow and code so that people can reproduce the issue and fix it, otherwise any intermediate process can invalidate the intermediate solutions that people may propose.

NB: I don't know if you use WWW_HTML_MERGER for ITS or anything else.