IDE extension that lets you fix coding issues before they exist!
Setup is effortless and analysis is automatic for most languages
Fast, accurate analysis; enterprise scalability
The requirement for an OTHERS clause is defensive programming. The clause should either take appropriate action, or contain a suitable comment as to why no action is taken.
OTHERS
CASE SY-INDEX. // Noncompliant; missing WHEN OTHERS clause WHEN ONE. WRITE 'One'. WHEN 2. WRITE 'Two'. ENDCASE.