‎2008 Dec 15 3:02 PM
Hi All,
We have recently upgraded client system from 4.6C to ECC 6.0 unicode system.
My program is reading a file from application server. This file contains the name and addresses of vendors. The address has a field '#' in it.
When we try to execute the statement 'READ DATASET filename INTO itab', it is giving a dump.
If we remove the character '#' from the data, the READ DATASET is successful.
But it is not possible to remove # form such a large data.
I want to know that is there any system by which we can read the special character # in unicpde system without dump.
regards,
Gaurav
‎2008 Dec 15 3:30 PM
Hi Gaurav,
may represent horizontal tab (CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB) or a carriage return (CL_ABAP_CHAR_UTILITIES=>CR_LF).
Thanks,
M
‎2008 Dec 15 3:19 PM
DATA: BEGIN OF fs_input,
data(500) TYPE c.
DATA: END OF fs_input.
Read into fs_input and after that move data into your structure
‎2008 Dec 15 3:30 PM
Hi Gaurav,
may represent horizontal tab (CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB) or a carriage return (CL_ABAP_CHAR_UTILITIES=>CR_LF).
Thanks,
M