i have below declarations
FIELD-SYMBOLS: <fs_table> TYPE STANDARD TABLE,
<fs_table1> TYPE STANDARD TABLE.
now i want to do below things.
loop at <fs_table>.
endloop.
it gives error "The internal table <fs_table> has no header line.
i also want to do below once above is error is solved.
loop at <fs_table>.
read table <fs_table1> with key ...........
endloop.
Pls help.