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

Simple Transformation Problem

Former Member
0 Likes
396

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

1 REPLY 1
Read only

Former Member
0 Likes
329

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