CHECK_55 - Statements can be chained
Improve this pageRFC enabled
CODE
Activating this check goes against the Clean ABAP recommendation Do not chain up-front declarations.
DATA: foo type c.
DATA: bar type c.
->
DATA: foo type c,
bar type c.