Skip to Content
0
May 19, 2020 at 11:49 AM

Download data from internal table into XLSX

3861 Views Last edit May 19, 2020 at 11:53 AM 3 rev

Hi Everybody,

how can I export data from internal table to existing EXCEL (starting on the 14th row and the 3rd column)? Is that possible without using FM?

For example this internal table:

TABLES sflight.

DATA: lt_output TYPE STANDARD TABLE OF sflight,
      ls_output LIKE LINE OF lt_output.

SELECT * FROM sflight INTO TABLE lt_output UP TO 50 ROWS.

Thanks,

Nella