‎2007 Oct 01 3:14 AM
SDN folks,
Is there any way I can delete internal table columns dynamically.
Let's say I have some data in internal table, and before downloading internal table data to excel I would like to delete some columns.
Regards,
Amey
‎2007 Oct 01 4:29 AM
Hi Amey,
Do you want to delete data in colums or the internal table columns?
If you want to delete columns then it is not possible.
Regards,
Atish
‎2007 Oct 01 4:29 AM
Hi Amey..
It is not possible to delete any columns from the internal table while downloading to a file.
For that you have to declare a separate internal table (without those columns) and MOVE the data from the First internal table in a loop.
LOOP AT ITAB.
MOVE-CORRESPONDING ITAB TO ITAB1.
APPEND ITAB1.
ENDLOOP.
Now call the FM GUI_DOWNLOAD and pass ITAB1.
<b>reward if Helpful.</b>