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

Query download problem

Former Member
0 Likes
661

Hi friends,

we developed a query to download somedata, for the query output format we choose option FILE STORE instead of ABAP LIST or List viewrs..... all the data is downloading properly but the problem is when the download data have some chinese chracters it is displaying as ####### instead of downloading chinese chracters..

our system is unicode, when we check with ABAP List option there have chinese chracters in output list, only problem is downloading to ecxel or text file..

if any idea abt this pls let me know

Thanks & Regards,

sksk.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
612

Hi,

Even though your system is UNICODE enabled, the addition you have used at OPEN DATASET might be different.

ENCODING DEFAULT / UTF - 8 / NO CONVERSION ERRORS are possible.

I guess, you need to check the code page available for this chineese character set, and use the addition for which this code page is available.

Regards,

Santhosh.

4 REPLIES 4
Read only

Former Member
0 Likes
613

Hi,

Even though your system is UNICODE enabled, the addition you have used at OPEN DATASET might be different.

ENCODING DEFAULT / UTF - 8 / NO CONVERSION ERRORS are possible.

I guess, you need to check the code page available for this chineese character set, and use the addition for which this code page is available.

Regards,

Santhosh.

Read only

0 Likes
612

Hi santhosh,

Thank u for reply, can u explain a little more means how to find this code pages or where we need to add these pages... etc.

Thanks & Regards,

sksk.

Read only

0 Likes
612

Hi,

This will be done by the BASIS people. Exactly the people those who are working and looking after the printer settings, UNIX file administrator etc.. can help you.

In the mean time, by modifying the addition used for the stement OPEN DATASET, you can try.

I hope they may work.

Regards,

Santhosh.

Read only

Former Member
0 Likes
612

solved