code pal for ABAP > Documentation > Self-Reference
This check searches for unnecessary usages of explicitly self-references using me->
to qualify an instance variable or method. Since this self-reference is implicitly set by the system, it should be omitted.
Omit the self-reference.
In exceptional cases, you can suppress this finding by using the pseudo comment "#EC SELF_REF
which should to be placed after the self-referenced statement:
DATA(sum) = me->aggregate_values( values ). "#EC SELF_REF
Before the check:
DATA(sum) = me->aggregate_values( values ).
After the check:
DATA(sum) = aggregate_values( values ).