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: 

Copy of transparent table

Former Member
0 Kudos

Hello Expert.

Can we copy transparent table in dictionary to another table with content. if yes, please let me know the how to do it.

Thanks and regards,

Zubera

5 REPLIES 5

nikhil_chitre
Active Participant
0 Kudos

hello,

create z table in se11 - copy of standard table...

then. create a z program which will select all entries from standard table and append in your z table.

hope this helps..

Regards,

Nikhil

0 Kudos

HI,

we can copy to other table but we cannot copy the contents....only structure is copied.

Regards,

Nagaraj

Former Member
0 Kudos

open SE11. copy the standard table to a ztable.

activate it.

then create a zreport

in that report select all the entries from the standard table into an internal table and insert these to the ztable

data: gt_table type STANDARD TABLE OF stdtable.
   
select * from stdtable into gt_table.
  
insert z_table from TABLE gt_table.

Edited by: Soumyaprakash Mishra on Sep 22, 2009 1:31 PM

p244500
Active Contributor
0 Kudos

hi

You can copy the transparent table using SE11 like Ztable but u cant get the data, If need the data also u have to get that data nad using BDC you have to upload it after the copy table

Regard

nawa.

Former Member
0 Kudos

Thanks . question answered.