Application Development 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: 

Transfer Data

Former Member
0 Kudos

Hi,

How to transfer the Data from one table to another in Data Dictionary? IS there any Transaction code for this?

Thanks

10 REPLIES 10

Former Member
0 Kudos

u need write report program for the transfer of data from one table to another table

0 Kudos

Hi,

Actually, my question is:

"How can I copy the data from one Data Dictionary Table to another new Table, in Dictionary"?

Thanks

0 Kudos

Hi,

Actually, my question is:

"How can I copy the data from one Data Dictionary Table to another new Table, in Dictionary"?

Thanks

Vijay
Active Contributor
0 Kudos

hi

if the two tables have the same structure then fetch the data from frist database table

into an internal table and modify the second table with that internal table

ie

modify db_table with itab (intrnal table).

regards

vijay

<b>reward points if helpful</b>

Former Member
0 Kudos

Hi,

Actually, my question is:

"How can I copy the data from one Data Dictionary Table to another new Table, in Dictionary"?

Thanks

Former Member
0 Kudos

Hi,

There is no transaction code but you can transfer like below.

First select the data from the table into local internal table.

Then insert this internal table data by using keyword INSERT into the table in which you want to insert new records.

Thanks and regards,

shyla

0 Kudos

Hi,

Actually, my question is:

"How can I copy the data from one Data Dictionary Table to another new Table, in Dictionary"?

Thanks

0 Kudos

Hi,

Actually, my question is:

"How can I copy the data from one Data Dictionary Table to another new Table, in Dictionary"?

Thanks

0 Kudos

Hi Pahwa,

U can not do directly in data dictionary thoriough program only u can do this one.

copy the data base table data into internal table and update this data directly into ne database table if they have same structures.

Reward points for all helpful answers,

kiran.M

Former Member
0 Kudos

Hi,

Actually, my question is:

"How can I copy the data from one Data Dictionary Table to another new Table, in Dictionary"?

Thanks