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

Regarding types

spandana_babu
Participant
0 Likes
593

hi

every body

types : i_mara type i occurs 0.

can any body explain wt this statement meaning..

Reagrds

Spandana

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
579

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

4 REPLIES 4
Read only

Former Member
0 Likes
579

It creates structure of type mara.

Read only

Former Member
0 Likes
579

i_mara is the inernal table type having no fields.

Regards,

Read only

Former Member
0 Likes
579

Hi,

i_mara is an internal table and doesn't have any records and occurs 0 specifies with headerline.

please reward points if helpful.

Read only

Former Member
0 Likes
580

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