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
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
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 | |
| 4 | |
| 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.