Hi Hardik,
the structure of internal table and field symbol is different. so have to use below code.
MOVE-CORRESPONDING <fs_one> TO gty_one KEEPING TARGET LINES.
But here problem is that its not assigning any value to the structure of gty_one-d1 . i want to assign the value to the d1 field of the gty_one internal table.
so here, i want to use:
MOVE-CORRESPONDING <fs_one> TO gty_one-d1 KEEPING TARGET LINES.
where gty_one is a internal table without headder.
regards,
Disha