Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

error transfer internal table to server

Former Member
0 Likes
803

hi,

Hello there is a feature that transfers an internal table on the server?

thk.

1 ACCEPTED SOLUTION
Read only

rainer_hbenthal
Active Contributor
0 Likes
778

No, you need to write it line by line.

7 REPLIES 7
Read only

rainer_hbenthal
Active Contributor
0 Likes
779

No, you need to write it line by line.

Read only

0 Likes
778

The problem that I can not crivi line by line gives me a conversion error.

Read only

0 Likes
778

show your code please

Read only

0 Likes
778

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.

Read only

0 Likes
778

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

Read only

0 Likes
778

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.

Read only

Former Member
0 Likes
778

in app server files you can use by DATASET.

or you can save in database as well...