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

objects

Former Member
0 Likes
517

when does the memory allocation actually occur for the declared object

4 REPLIES 4
Read only

former_member156446
Active Contributor
0 Likes
489

data: begin of itab occurs 0,

end of itab. <<<<<<< memory is allocated now

types: begin of itab,

end of itab. <<<< no memory is allocated

data: itab_1 type standard table of itab. <<< now memory is allocated

Read only

abdul_hakim
Active Contributor
0 Likes
489

During program execution(as soon as you press f8 / entering the tcode in the command and hit enter)

Read only

Former Member
0 Likes
489

when the object is declared for a class memory is automatically allocated for it.

Read only

Former Member
0 Likes
489

It is allocated during execution.

After execution, memory gets released.