Marc Bernard

Results 583 comments of Marc Bernard
trafficstars

also with case: ```abap REPORT zfoobar. CASE sy-index. WHEN 1. FIND 'TEST1' IN TABLE lt_code RESULTS lt_results. "

I like the idea. In general, a rule to validate the mapping between DDIC and code would be good to have (DOMA > constant, DTEL > data type, TABL >...

Yes, I read https://github.com/SAP/styleguides/blob/main/clean-abap/sub-sections/Enumerations.md again. Your original suggestion is for checking the "constant pattern". It's the Clean ABAP recommendation which is fine and we should *not* add the constant structure...

Understandable that SAP does not want to touch legacy code. However, there's clearly a need to automate code formatting **beyond** the SAP standard. The logical conclusion is to provide an...

UT fails since field-symbols don't support type casting: https://github.com/abapGit/abapGit/pull/5611

No more error, but `line` in the result tab is not filled correctly. ```abap TYPES: BEGIN OF ty_submatch, offset TYPE i, length TYPE i, END OF ty_submatch. TYPES: BEGIN OF...

just saw the todo https://github.com/abaplint/transpiler/blob/ea99f67c97a24f105cac8537e4dab88064bcde7e/packages/runtime/src/statements/find.ts#L113

now `line` is filled properly but `submatches` table is empty instead of one record with offset `2` and lenght `3`