2013 Aug 26 9:40 AM
Tried with encoding UTF-8, same problem
c_split TYPE c VALUE cl_abap_char_utilities=>horizontal_tab.
Bukrs is missing a 0.
My other problem is that the data is existing in the custom table but unable to retrieve it.
Data type is character 10. no conversion exits.
Data class APPL0
Size category 4
But when * is added as a suffix, it works. CA*
Thanks,
Conrad
2013 Aug 26 1:03 PM
solved
used
in TEXT MODE ENCODINg utf-8 for INPUT SKIPPING BYTE-ORDER mark.
forthe 2nd problem i just used select like for the spaces. though the data should be re uploaded to fix the spaces
Tried with encoding UTF-8, same problem
c_split TYPE c VALUE cl_abap_char_utilities=>horizontal_tab.
Bukrs is missing a 0.
My other problem is that the data is existing in the custom table but unable to retrieve it.
Data type is character 10. no conversion exits.
Data class APPL0
Size category 4
But when * is added as a suffix, it works. CA*
Thanks,
Conrad
2013 Aug 26 12:37 PM
1st problem, when using non unicode, data is 2000#568615#717918#08162013#06172013#CA#3750#Php#BF1-0000000000000107#
2nd problem looks like the data was uploaded with spaces at the end.
2013 Aug 26 12:44 PM
Hi,
does your field GT_FILEDATA-BUKRS is CHAR 3 or CHAR 4 ??
regards
Fred
2013 Aug 26 12:45 PM
From the first screen shot, it looks like your are reading a delimited file but not breaking the read string on the delimiter.. That will trash out your data...
Neal
2013 Aug 26 12:56 PM
Hi,
First check the length of BUKRS in the structure GT_FIELDDATA whether it is 3 or 4.
Else just use c_split TYPE c VALUE '#' , which is direct.
Second try select the value which you are searching through F4 help.
2013 Aug 26 1:03 PM
solved
used
in TEXT MODE ENCODINg utf-8 for INPUT SKIPPING BYTE-ORDER mark.
forthe 2nd problem i just used select like for the spaces. though the data should be re uploaded to fix the spaces