‎2007 Aug 21 1:15 PM
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.
‎2007 Aug 21 1:20 PM
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
‎2007 Nov 19 11:15 AM
Hi Sandhya
You have any link or any documents which explain this in large extant....
Thanks in advance
Sandy..........