"Delete unused variables" rule deletes variable which used in macros.
For example:
In include f01
DATA: lv_tuna TYPE developer.
In include m01
DEFINE xxx.
&1 = lv_tuna + 'xxx'.
END-OF-DEFINITION.
when formatting include f01, it deletes the definition in include f01, so it cannot be activated.
"Delete unused variables" rule deletes variable which used in macros.
For example:
In include f01
DATA: lv_tuna TYPE developer.
In include m01
DEFINE xxx.
&1 = lv_tuna + 'xxx'.
END-OF-DEFINITION.
when formatting include f01, it deletes the definition in include f01, so it cannot be activated.