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

convert unicode to utf-8

Former Member
0 Likes
962

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

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
Read only

former_member194669
Active Contributor
0 Likes
614

Hi,

While reading from application server use like this way


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

aRs

Read only

Former Member
0 Likes
614

hi

try that

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