Marc Bernard
Marc Bernard
```abap data f type f. data out type string. f = '10.239'. out = |f = { f }|. write / out. out = |f = { f decimals =...
```abap write: 'hello', 'world'. ``` output is `helloworld` but should be `hello world`
In case an interface method was deleted, pulling a class that had implemented such method would not delete the implementation. This resulted in a diff and manual effort to remove...
Longtexts that exist in the system but not in the remote repository are deleted when pulling. Closes #5202
Generic model Test https://github.com/abapGit-tests/AOBJ Closes #804
System tables contain data shipped with the software (and changes by customers are not supported). Let's include the content of system tables (DD02L-CONTFLAG ='S') during serialization. At deserialize, truncate the...
should be syntax error "UNIQUE can only be specified with the table categories HASHED and SORTED.": ```abap TYPES: BEGIN OF ty_row, i TYPE i, s TYPE string, END OF ty_row....
## Feature Coming back to #600 (which was 8 years ago)... Nowadays, there are excellent libraries available to check a regex against ReDoS vulnerabilities. I suggest adding such check to...
One of the most common problems in abapGit is dealing with [connection issues](https://github.com/abapGit/abapGit/issues?q=is%3Aissue+ssl+is%3Aclosed). This change introduces a connection check when working with online repositories. The connection is checked in the...
Follow-up to #6715 After setting the original system at the end of deserializing objects, the type of the transport is now switched to "Repair" which prevents errors when releasing the...