internal table
Hi Gurus,
Ive defined the internal table like this
itab type standard table of SPFLI with header line.
select * from spfli into itab.
write : itab-carrid.
though it is activated, it does not give an o/p
I also tried
itab type standard table of SPFLI
wa type spfli.
select * from SPFLI into table itab.
loop at itab into wa.
write : wa-carrid.
endloop.
This does not work either.
Any help on this would be appreciated.