2007 Aug 16 6:16 AM
Hi ,
I want to transfer some data to application server using opendatset non-unicode option. From the application server data is passed to a nonunicode system.
The data contains some special chanracters which were trnsfered to application server using unicode option.As the system to which i want to transfer data is nonunicode system i have to use nonunicode option but this is resulting in dump .Please reply me with solution .
Regards,
Soumya.
Hi ,
I want to transfer some data to application server using opendatset non-unicode option. From the application server data is passed to a nonunicode system.
The data contains some special chanracters which were trnsfered to application server using unicode option.As the system to which i want to transfer data is nonunicode system i have to use nonunicode option but this is resulting in dump .Please reply me with solution .
Regards,
Soumya.
2007 Aug 16 6:25 AM
Hi,
Use opendataset with addition MODE ENCODING NON-UNICODE
DATA: outfile(512) TYPE c.
OPEN DATASET outfile FOR OUTPUT IN TEXT MODE ENCODING NON-UNICODE.
loop at itab into wa_itab.
TRANSFER wa_itab TO outfile.
endloop.
CLOSE DATASET outfile.
aRs
2007 Aug 16 6:30 AM
I used OPEN DATASET outfile FOR OUTPUT IN TEXT MODE ENCODING NON-UNICODE.
But the data is having special characters thats why it is giving dump .
In non-unicode option it is not allowing special charactrs .
2007 Aug 16 6:37 AM
Check this link
http://help.sap.com/saphelp_nw04/helpdata/en/79/c554a0b3dc11d5993800508b6b8b11/content.htm
Try to use ENCODING UTF-8
or use
OPEN DATASET dsn IN LEGACY TEXT MODE
aRs
2007 Aug 16 7:13 AM
Will the non-unicode system accept this data .
As i know that non-unicode system will accept only non-unicode data.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |