Hi Experts!!
Is it possible to remove a column of an internal table?
FIELD-SYMBOLS: <z_table> TYPE STANDARD TABLE,
<wa_table> TYPE ANY,
ti_generica TYPE REF TO data.
UNASSIGN <z_table>.
CREATE DATA ti_generica TYPE STANDARD TABLE OF (wa_datoscargas-ztblcar).
ASSIGN ti_generica->* TO <z_table>.
wa_datoscargas-ztblcar --> have MANDT.
I show a ALV and also exported to an Excel file, but I do not want the column MANDT.
Does anyone know how I can remove that column in my internal table?
Thaks.
Edited by: Thomas Zloch on Apr 16, 2010 4:30 PM - "it" = "internal table"