Lars Hvam
Lars Hvam
doing workaround
eg https://github.com/abapGit/abapGit/pull/7412 vs https://github.com/abapGit/CI
reproduced as ```abap DATA binary_code TYPE x LENGTH 2. DATA binary_zero TYPE x LENGTH 2. IF binary_code BIT-AND CONV xstring( 16 ) > binary_zero. ENDIF. ``` > Arithmetic and bitwise...
reproduced as ```abap TYPES tytab TYPE STANDARD TABLE OF i WITH DEFAULT KEY. DATA new_data TYPE tytab. new_data = VALUE tytab( FOR i = 0 UNTIL i = 10 (...