2008 Dec 09 8:49 AM
Hi!
Can anyone give me a hint how to handle an umlaut in a xml transformation using call transformation with a simple transformation file?
My Report crashes if the loaded xml file contains different sorts of umlaut like ß, ä..
Can't find any way to set the character encoding in tt files!
Hope to get a solution!
Regards,
Daniel
2008 Dec 29 3:04 PM
Hi,
do the transformation into an field type xstring and convert after translation with
CALL FUNCTION 'ECATT_CONV_XSTRING_TO_STRING'
EXPORTING
im_xstring = lvx_request
im_encoding = 'UTF-8'
IMPORTING
ex_string = lv_request.
Hope it helps.
Freddy