‎2008 May 03 5:53 AM
hi
every body
types : i_mara type i occurs 0.
can any body explain wt this statement meaning..
Reagrds
Spandana
‎2008 May 08 12:13 PM
Hi Spandana ,
It is basically creating a table type , so now this types can be used to create an internal table with header line.
So this decleration does not result in memory being allocated as we are just definining a type , we need to declare a varaible of that type to start using it .
Try declaring
data : it_1 type i_mara. in you program and see.
Hope this helps.
Regards
Arun
‎2008 May 03 9:04 AM
‎2008 May 03 10:29 AM
i_mara is the inernal table type having no fields.
Regards,
‎2008 May 08 12:00 PM
Hi,
i_mara is an internal table and doesn't have any records and occurs 0 specifies with headerline.
please reward points if helpful.
‎2008 May 08 12:13 PM
Hi Spandana ,
It is basically creating a table type , so now this types can be used to create an internal table with header line.
So this decleration does not result in memory being allocated as we are just definining a type , we need to declare a varaible of that type to start using it .
Try declaring
data : it_1 type i_mara. in you program and see.
Hope this helps.
Regards
Arun