Mike Pokraka
Mike Pokraka
I agree with the principle of [Dump for totally unrecoverable situations](https://github.com/SAP/styleguides/blob/master/clean-abap/CleanABAP.md#dump-for-totally-unrecoverable-situations) However, I much prefer using ASSERTs. Yet they are not mentioned anywhere in the guide? ```ABAP IF foo IS...
The examples this guide often use prefixes /clean/ and /dirty/ to indicate good and bad examples. Personally I'm not a fan of their use. To me they are actually an...
Data type conversions with type `c` doesn't downport as expected. String works. Reproduce: ```abap report ztest. start-of-selection. data i type i. data chr(20) type c. data str type string. str...
This message appears in places unrelated to the source of the error. I assume it's to do with the parser not finding the end of the method if there is...
Finding "Reference to current class can be omitted" when calling a static method is a valid use and recommended in the Clean ABAP book: _Make the fact that you’re calling...
Missing feature / todo ? Cannot use SQL on internal tables ```abap data itab type standard table of i. itab = value #( ( 3 ) ( 7 ) (...
Standard Rule - mostly used in workflow routing & agent determination Transaction PFAC
This is more to document an issue I encountered following an S/4 upgrade. Perhaps the error handling could be improved, but not the highest priority. When I wanted to update...
Should de/serialisers incorporate SAP versions? I have seen issues about diffs with repos created on a different SAP version. In the worst case there can be a complete incompatibility. Object...