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

Understand that internal tables are for only in programs.

For example if you want to use some SAP defined ar your own Z or Y tables, you generally copy the data into an internal table and manipulate.

For declaring an internal table.

TYPES: begin of line
          connid LIKE spfli-connid,
          carrid LIKE spfli-carrid,
        .....
        .....
       end of line.

Data: itab TYPE standard table of line with header lne.

<b>for populating data</b>

select connid carrid
into table itab
from spfli