Hi,
I have two select queries like this.
Select voleh volum mtart
into table l_t_mara
from mara
FOR ALL ENTRIES IN itab1
where matnr = itab1-matnr and
mtart in mtart.
Select zlegt zwdth zhgth zvolm
into table l_t_zcnmm_volume
from zcnmm_volume
FOR ALL ENTRIES IN itab1
where matnr = itab1-matnr and
werks = itab1-werks.
Now I want to move the fields voleh volum mtart zlegt zwdth zhgth zvolm into global internal table itab which is having same structure as itab1.How can I do this?