Dear All,
My scenario is like this :
I have a dynamic internal table in the form of a Field Symbol.
This Field Symbol will have one structure assigned to it dynamically.
CREATE DATA gt_rson_table TYPE TABLE OF (gwa_znrows_def-rson).
ASSIGN gt_rson_table->* TO <fs_t_rson>.
Now from the above statement it is clear that the Field Symbol <fs_t_rson> will be having the structure of the Table (gwa_znrows_def-rson).
But now I want to add one more field to this structure after the above assigning .
i.e Say in the above assignment of the Field Symbol, <fs_t_rson> has 5 fields then I want to add one more field to it (Year like MJAHR) and so it should contain 6 fields now .
Is it possible to achieve this ?
If yes let me know the procedure !
Thanks & Regards,
Deepu.K