2008 Jul 14 10:19 AM
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.
2008 Jul 14 10:23 AM
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.
2008 Jul 14 10:23 AM
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.