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

memory

Former Member
0 Likes
510

how much memory is reserved for the input_record for the following statement?

Types: begin of rec_type,

flag type c,

count(3) type c,

today type d,

end of rec_type.

Data: input_record type rec_type.

please help me out....

thanks in advance.

2 REPLIES 2
Read only

Former Member
0 Likes
382

Hi

hereinput_record is workarea so it can hold single record of the 3 fields u declared

so total memory is 12 bytes

flag 1 byte

count 3 bytes

today 8 bytes

Regards

sandhya

Read only

0 Likes
382

Hi Sandhya

You have any link or any documents which explain this in large extant....

Thanks in advance

Sandy..........