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

Data transfer

Former Member
0 Likes
580

Hi Friends,

How to transfer data from one version to other version (for eg. i want to transfer data from r/3 4.7 to 6.0 ), if u have some logic how to do that or code ,pls send me.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
562

hi

download required 4.7 data into flat file using download function module. Then upload it.

To do this. just create internal table with all fields which data you want to download.

select data from the database into internal table.

Use function module WS_DOWNLOAD to down load the data from itab to pc(flat file).

No in 6.0 version use WS_UPLOAD fm to get data from flat file to itab. Then u can use different methods to upload the data into SAP(BDC,LSMW)

Reward if it is useful.

Thanks

Siva Kumar

5 REPLIES 5
Read only

Former Member
0 Likes
563

hi

download required 4.7 data into flat file using download function module. Then upload it.

To do this. just create internal table with all fields which data you want to download.

select data from the database into internal table.

Use function module WS_DOWNLOAD to down load the data from itab to pc(flat file).

No in 6.0 version use WS_UPLOAD fm to get data from flat file to itab. Then u can use different methods to upload the data into SAP(BDC,LSMW)

Reward if it is useful.

Thanks

Siva Kumar

Read only

0 Likes
562

Thanks ,

To transfer data from r/3 4.7 to 6.0 ,i want to create different a tool for that ,have u some idea about that.

Read only

0 Likes
562

HI VIDYA

U CAN CREATE A OWN BAPI FOR THAT.

Read only

0 Likes
562

how to do that

Read only

0 Likes
562

at first create a function module which is remote function module.

than assign that function module to a business object.

than create method for that business object.