Shared coding conventions allow teams to collaborate efficiently. This rule checks that all function names match a provided regular expression.
Noncompliant Code Example
With default provided regular expression: ^([A-Z0-9_]*|[a-z0-9_]*)$
FUNCTION MyFunction.
...
ENDFUNCTION.
Compliant Solution
FUNCTION MY_FUNCTION.
...
ENDFUNCTION.