2009 Jul 23 2:40 PM
Hello experts,
I'm using smartforms to send emails in html without attachments. I take the raw data from 'job_output_info-xmloutput-trfresult-content[]' and convert it with 'NLS_STRING_CONVERT_TO_SYS'. I face the problem that special characters like 'ä', 'ö', 'ü' are not displayed correctly, but as 'ä', 'ö', 'ü'.
Can anyone give me a hint where coding formats can be set?
Thanks in advance
Jan Phillip Höft
2009 Aug 11 2:04 PM
Using the following function solves:
CALL METHOD CL_ABAP_CONV_IN_CE=>CREATE
EXPORTING
INPUT = l_xstring
ENCODING = 'UTF-8'
REPLACEMENT = '?'
IGNORE_CERR = ABAP_TRUE
RECEIVING
CONV = loc_CONV.