Skip to content

Commit f6250eb

Browse files
Update number-output-parameter.md
1 parent 6322b40 commit f6250eb

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

docs/checks/number-output-parameter.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,18 @@
1-
# code pal for ABAP
2-
31
[code pal for ABAP](../../README.md) > [Documentation](../check_documentation.md) > [Number of Output Parameters Check](number-output-parameter.md)
42

53
## Number of Output Parameters Check
64

75
### What is the Intent of the Check?
86

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.
10-
11-
### Which attributes can be maintained?
12-
13-
![Attributes](./imgs/number_of_output_parameters.png)
7+
This check searches for methods where more than one parameter in one of the output types (`EXPORTING`, `CHANGING` or `RETURNING`) is used.
148

159
### How to solve the issue?
1610

1711
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.
1812

1913
### What to do in case of exception?
2014

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:
2316

2417
```abap
2518
CLASS class_name DEFINITION.

0 commit comments

Comments
 (0)