H Ajit,
You are using two different tables in the declaration and in the select statement. (t100 and t001)
DATA: itab1 TYPE STANDARD TABLE OF t100,
SELECT * FROM t001
INTO TABLE <fs_1>
UP TO 10 ROWS.
Make both same, it will be fine.
Regards,
Susmitha