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

I am afraid that I'd have to agree with IBM and disagree with the posters here, and say that it <b>is</b> possible to create an itab through SE11.

Go to SE11, select the "Data Type" radio button, and create a table with a line type of sflight. Then run this code.

PROGRAM ztst.

DATA: z_sflight TYPE z_tbl.
DATA: wa LIKE LINE OF z_sflight.

SELECT *
FROM sflight
INTO TABLE z_sflight.

LOOP AT z_sflight INTO wa.
  WRITE : / wa-carrid.
ENDLOOP.