You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/checks/number-output-parameter.md
+2-9Lines changed: 2 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,25 +1,18 @@
1
-
# code pal for ABAP
2
-
3
1
[code pal for ABAP](../../README.md) > [Documentation](../check_documentation.md) > [Number of Output Parameters Check](number-output-parameter.md)
4
2
5
3
## Number of Output Parameters Check
6
4
7
5
### What is the Intent of the Check?
8
6
9
-
The "Number of Output Parameters Check" searches for methods where more than one parameter in one of the output types (`EXPORTING`, `CHANGING` or `RETURNING`) is used.
This check searches for methods where more than one parameter in one of the output types (`EXPORTING`, `CHANGING` or `RETURNING`) is used.
14
8
15
9
### How to solve the issue?
16
10
17
11
Use methods which return just one parameter per output type. If you have multiple output parameters which are related to each other, use a structure to group them.
18
12
19
13
### What to do in case of exception?
20
14
21
-
You can suppress Code Inspector findings generated by this check using the pseudo comment `"#EC NUM_OUTPUT_PARA`.
22
-
The pseudo comment must be placed right after the method definition.
15
+
In exceptional cases, you can suppress this finding by using the pseudo comment `"#EC NUM_OUTPUT_PARA` which should be placed right after the method definition:
0 commit comments