hi,
Just move data from internal table to other .
it_tab1 is your internal table and you want same data in another internal table then use
it_tab2[] = it_tab1[].
so from it_tab1 all data will be copied to it_tab2. Both with same structure.
By looping also u can move required data to another internal table.