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

download/upload Unicode data into database table

Former Member
0 Likes
768

Hi folks,

I have reqirement to download data from a series of tables that has unicode data (tables have fields in decimal format, number) and then upload the same in a different client. I have this code tha works fine for non uncoide compatibility. I have just pasted the download option. Unable to download data from a table that has decimal fields. I have to take this apporach because I have a huge list of tables that I need to download in one shot and upload the data in one shot instead of taking each table at once.

Any thoughts of doing this a different way? Please advise. Thanks in advance.

VG

data:v_tabname like dd02l-tabname,

Data: begin of i_list occurs 0,

i_tabledata(2550) type c,

end of i_list.

Data: begin of i_final1 occurs 0,

record_num(4) type n,

table_name(20) type c,

i_tabledata(2550) type c,

4 REPLIES 4
Read only

Former Member
0 Likes
731

If you're simply updating data in a different client there's no need to upload or download. You can insert directly with CLIENT SPECIFIED.

Rob

Read only

0 Likes
731

I did not understand your point of view. It isa different client box altogether. Can you elaborate?

Thanks,

VG

Read only

0 Likes
731

Hi,

see INSERT keyword documentation and in particular CLIENT SPECIFIED suffix.

Regards,

Ivan

Read only

0 Likes
731

This message was moderated.