sandraros

Results 41 issues of sandraros

I don't understand what this program should demonstrate. Can anyone explain? What means this cell with the text "This cell is unlocked"? In fact it's not unlocked at all. Unlocked...

question
low priority

Clean ABAP currently recommends to use functional constructs (Table Expression or `line_exists`) over `READ TABLE`, but it's a little bit lost amongst other functional constructs in the chapter "[General >...

clean-abap
New Rule

Hi, I have asked in [SAP Community](https://answers.sap.com/questions/13106297/in-adt-is-there-a-quickfix-to-create-event-handler.html) if there was a way to easily create event handlers. I'll try to work on a proposal, but maybe you'd be interested or...

Source: https://community.sap.com/t5/technology-q-a/abap2xlsx-problem-downloading-file/qaq-p/13681256 Program to reproduce the bug: ```abap REPORT. DATA gc_save_file_name TYPE string VALUE 'abap_issue_1215.xlsx'. INCLUDE zdemo_excel_outputopt_incl. START-OF-SELECTION. DATA(lo_excel) = NEW zcl_excel( ). DATA(lo_worksheet) = lo_excel->get_active_worksheet( ). SELECT msehi, msehl...

bug
help wanted

Currently [`zcl_excel_common`](https://github.com/abap2xlsx/abap2xlsx/blob/main/src/zcl_excel_common.clas.testclasses.abap) has one big test class with around 80 test methods. Some methods like `excel_string_to_date` do several tests. Better define one method per test. It's difficult to maintain. Reorganizing...

enhancement

Fix #71 https://github.com/abap2xlsx/abap2xlsx/pull/1258

`zdemo_excel_checker` shows two "regressions" after https://github.com/abap2xlsx/abap2xlsx/pull/1258, concerning the programs `zdemo_excel2` and `zdemo_excel15_02`: ![image](https://github.com/user-attachments/assets/8c8f327e-dd28-4393-b0bf-4164c79ffe27) These changes are normal and need to be reflected in the corresponding two Excel files stored in...

Depending on the SAP GUI components installed on your laptop, `ZDEMO_EXCEL16` may show this error (with the selection screen default values): > Exception 1 while uploading the file at "\\wwi\graphics\W_bio.bmp"...

Applying ABAP Cleaner version 1.18.1 on the program at the end of the issue, due to unsupported syntax, prevents the whole cleanup: > line 8: Parse error in line 8:...

Currently, the below program outputs this CSV file via `zcl_excel_writer_csv`: ![image](https://github.com/user-attachments/assets/3300b649-3765-4359-ae00-b38ad3f2370a) I would expect this output because the ALV has a filter to display only the companies with currency USD,...

enhancement