cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

Dear a::

Can I create an Internal Table through SE11 and use in my report ? How ?

Thanks & Regards

Vinayak Deosthali.

0 Likes
View Entire Topic
Former Member
0 Likes

Hi vinayak,

1. SE11 is for creating

actual / physical / database tables

and not internal table.

2. internal table is

a kind of variable only,

(but in the format/structure of table with

many fields and many rows)

3. to use in code, we can define like this.

data : itab like table of t001 with header line.

or

data : begin of itab occurs 0,

bukrs like t001-bukrs,

matnr like mara-matnr,

end of itab.

regards,

amit m.