Update zcl_excel_writer_2007.clas.abap

This commit is contained in:
Bernd 2024-05-28 17:16:46 +02:00 committed by GitHub
parent 578a519f50
commit ea28dae261
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4348,7 +4348,7 @@ CLASS zcl_excel_writer_2007 IMPLEMENTATION.
* Last of all preparations * Last of all preparations
IF lo_autofilter IS BOUND. IF lo_autofilter IS BOUND.
ls_row_data-hidden_only = abap_true. ls_row_data-hidden_only = abap_true.
lv_current_row = ls_area-row_start. lv_current_row = ls_area-row_start + 1. "without header
WHILE lv_current_row <= ls_area-row_end. WHILE lv_current_row <= ls_area-row_end.
READ TABLE lt_sorted_rows TRANSPORTING NO FIELDS READ TABLE lt_sorted_rows TRANSPORTING NO FIELDS
WITH TABLE KEY row = lv_current_row. WITH TABLE KEY row = lv_current_row.