code pal for ABAP > Equals Sign Chaining
This check identifies sequenced assignments as they usually confuse the reader.
"anti-pattern
x = y = z
Break it in multiple rows:
y = z.
x = y.
Alternatively, you can use the xsdbool
if the target is a comparison:
x = xsdbool( y = z ).
In exceptional cases, you can suppress this finding by using the pseudo-comment "#EC EQUALS_CHAINING
which should be placed after the attribution:
x = y = z. "#EC EQUALS_CHAINING