Dear a::
Can I create an Internal Table through SE11 and use in my report ? How ?
Thanks & Regards
Vinayak Deosthali.
Request clarification before answering.
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.
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.