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: 

convert unicode to utf-8

Former Member
0 Kudos

hi

i want to convert a file in application server which contains japanese characters in to utf-8 format in order to read it easily using open dataset.

is there any way to convert it through abap program which runs in backgroung job.

thanks,

Madhu

2 REPLIES 2

former_member194669
Active Contributor
0 Kudos

Hi,

While reading from application server use like this way


open dataset fnam for input in legacy text mode code page '1100'.

aRs

Former Member
0 Kudos

hi

try that

OPEN DATASET 'test.txt' FOR OUTPUT IN TEXT MODE ENCODING utf-8.