‎2010 Feb 10 1:40 PM
hi,
Hello there is a feature that transfers an internal table on the server?
thk.
‎2010 Feb 10 1:43 PM
‎2010 Feb 10 1:43 PM
‎2010 Feb 10 1:51 PM
The problem that I can not crivi line by line gives me a conversion error.
‎2010 Feb 10 1:53 PM
‎2010 Feb 10 1:54 PM
Then you need to tell your abap on how to convert the data. You need to have tha data in one line containing readbale chars only. You can not write structured or deep structed lines.
‎2010 Feb 10 2:03 PM
DATA : d_line(2000).
LOOP AT <i_tab> INTO <w_itab>.
WRITE <w_itab> TO d_line.
TRANSFER d_line TO l_dir .
ENDLOOP.
error :
Data objects in a Unicode program are not convertible.
help.
Edited by: francesco aiello on Feb 10, 2010 3:20 PM
‎2010 Feb 10 2:23 PM
You need to convert field by field and concatenating evryting together in one line. As i said: you can not convert a structured line into a character one, only if ALL components are char based. I guess you have date, time or packed fields in your structure.
‎2010 Feb 10 1:44 PM
in app server files you can use by DATASET.
or you can save in database as well...