LOOP AT <tabx> INTO <fs3>.
ASSIGN COMPONENT 'BUSAREA' OF STRUCTURE <fs3> TO <fs_busarea>.
ASSIGN COMPONENT 'SOD_ID' OF STRUCTURE <fs3> TO <fs_sodid>.
AT LAST.
<b> CONCATENATE 'BUSAREA-' it_jrm-busarea INTO gv_field.
ASSIGN COMPONENT gv_field OF STRUCTURE <fs3> TO <fs_buscount>.</b>
ENDAT.
ENDLOOP.
In the above code <fs3> structure is getting filled with ******** after the command line <b>AT LAST</b> eventhough it was having data.
How to correct this?