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

code page conversion from 4102 to 9100 CX_SY_CONVERSION_CODEPAGE

Former Member
0 Likes
364

hi ,

i have problem in one of the issues on code page convresion from 4102 to 9100 CX_SY_CONVERSION_CODEPAGE.

the file content is something like this 10141227||27.09.1950|Krocsány|Lászlóné|M#szerész utca in Q and P.

i tried to add this data into D for an employee ( M#szerész utca) for replicating the issue.

but in d the file is getting transferred where as in q and p it is going for a dump.

upon investigating it is evident that # is creating a problem IN Q AND P.

now the tricky part is when im copying M#szerész utca into D there is a different value associated with # in D and (Q,p).

has anyone encountered this sort of probelm ?

this is the current statement .

OPEN DATASET gv_unix FOR OUTPUT IN LEGACY TEXT MODE CODE PAGE p_code .

OPEN DATASET gv_unix FOR OUTPUT IN LEGACY TEXT MODE CODE PAGE p_code ignoring conversion errors.

will the addition of ignoring conversion errors bypass the CX_SY_CONVERSION_CODEPAGE and if so what is the value i can expect for the # in the unix server .

Thanks for your time .

Just guide me with some valuable information on this issue .

Vijay.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
308

Hi Vijay/Snipper

When you are using OPEN Dataset , trying to write the content all the content should be character format. if the there is any data like quantity and currency try to convert them into char format or else you will get the dump.

use character format only.

1 REPLY 1
Read only

Former Member
0 Likes
309

Hi Vijay/Snipper

When you are using OPEN Dataset , trying to write the content all the content should be character format. if the there is any data like quantity and currency try to convert them into char format or else you will get the dump.

use character format only.