Skip to Content
0
Former Member
Jun 11, 2009 at 04:57 AM

loop through field symbos.

37 Views

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.