Application Development and Automation 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: 
Read only

populate data into structure

Former Member
0 Likes
382

Hi ,

How to populate data into a structure,

where the data is in different internal tables

Thanks,

Kalyani

2 REPLIES 2
Read only

Former Member
0 Likes
355

you cannot populate data into a structure..

as the name suggests it is just a structure with different fields

store them in a Ztable...

Read only

Former Member
0 Likes
355

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