abapOpenChecks
abapOpenChecks copied to clipboard
Open source checks for SAP Code Inspector / ABAP Test Cockpit
`SELECT istat,spras FROM tj02t`
in some programs the smartform name is hardcoded, in this case a syntax check for the dynamic function module call can be implemented
```abap WHILE something. WHILE something_else. ... ENDWHILE. ENDWHILE. ``` can be changed to ```abap WHILE something AND something_else. ... ENDWHILE. ```
as it looks like the standard check does not work for the new constructor expressions, `APPEND VALUE #( moo = -objek+0(20) ) TO mt_foo.`
``` LOOP AT it_asdf ASSIGNING FIELD-SYMBOL(). IF -obj_up IS NOT INITIAL. ``` ... ENDIF. - nothing here ENDLOOP.
```abap data foo type i value 0. data bar type c length 1 value ''. ```
which is CLEARed as first thing in method, and is non generic can be changed to RETURNING?
TRAN: check for identical transaction codes but with different names identical = calls same report
something like this really hurts my soul, ```abap it_foo = VALUE #( ( sign = 'I' option = 'EQ' low = iv_foo ) ) it_bar = VALUE #( ( option...
60: skip if it contains \n plus if it is longer than xxx