‎2007 Jun 21 3:42 PM
Hi ,
How to populate data into a structure,
where the data is in different internal tables
Thanks,
Kalyani
‎2007 Jun 21 3:45 PM
you cannot populate data into a structure..
as the name suggests it is just a structure with different fields
store them in a Ztable...
‎2007 Jun 21 3:48 PM
HI,
Jut imagine we have ITAB1, and we have structure zstructre.
data : begin of itab occurs 0,
m1 type c value 'X',
m2 type c value 'Y',
end of itab.
jsut populating like...
zstructure-m1 = m1.
zstructure-m2 = m2.
append zstructure.
regards,
AJay