We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6aec70d commit 66f4694Copy full SHA for 66f4694
docs/checks/form-routine.md
@@ -23,12 +23,12 @@ Use classes and methods instead. Methods are similar to subroutines and can be u
23
### What to do in case of exception?
24
25
You can suppress Code Inspector findings generated by this check using the pseudo comment `"#EC CI_FORM`.
26
-The pseudo comment must be placed right after the `ENDFORM`.
+The pseudo comment must be placed right after the `FORM` declaration.
27
28
```abap
29
-FORM my_form.
+FORM my_form. "#EC CI_FORM
30
" Form content
31
-ENDFORM. "#EC CI_FORM
+ENDFORM.
32
```
33
34
### Further Readings & Knowledge
0 commit comments