Dear a::
Can I create an Internal Table through SE11 and use in my report ? How ?
Thanks & Regards
Vinayak Deosthali.
Request clarification before answering.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 10 | |
| 5 | |
| 5 | |
| 5 | |
| 5 | |
| 2 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.