HI All,
I am creating internal table dynamically using the below syntax. Now I need to remove few of the fields from the internal table structure. Could you please help me how to go ahead in these cases?
* Create table dynamically for local data CREATE DATA gv_table_l TYPE TABLE OF (<fs_tabname>). CREATE DATA gv_wa_l TYPE (<fs_tabname>). ASSIGN gv_table_l->* TO <fs_local_tab>. ASSIGN gv_wa_l->* TO <fs_local_wa
>.
Please let me know if you have any thoughts.
Thanks,
Raghu.