Hi
Can any one suggest me some better ways to do this.
I am developing a report which is related to FI Module,its a ALV Grid display method.
In this i am having a master internal table which needs to be passed to RESUE_ALV_GRIS_DISPLAY.
i am using 6 internal tables other than master internal table, i want all these entries should get clubbed into the master internal table.
For example.
I have created master interna table like this.
types: begin of ty_itab,
x type vbak-x,
y type vbak-y,
end of ty_itab.
data : master_itab type table of ty_itab,
wa_itab type ty_itab.
and the other interna tables as follows.
types: begin of ty_itab1,
x type vbak-x,
y type vbak-y,
z type vbak-z
end of ty_itab1.
data : itab1_itab type table of ty_itab1,
wa_itab1 type ty_itab1.
like itab1_itab i am having six internal tables can any one suggest me some possibility ways to club all the entries in to master internal table..
Thanks and Regards,
Arun jOSEPH