code pal for ABAP > Documentation > Combination of Output Parameters Check
The "Combination of Output Parameters" check searches for methods where a combination of EXPORTING
, CHANGING
and/or RETURNING
parameters is used.
Use just one sort of output type per method.
You can suppress Code Inspector findings generated by this check using the pseudo comment "#EC PARAMETER_OUT
.
The pseudo comment must be placed right after the method definition header.
CLASS class_name DEFINITION.
PUBLIC SECTION.
METHOD method_name
EXPORTING param1 TYPE c
CHANGING param2 TYPE c
RETURNING VALUE(result) TYPE c. "#EC PARAMETER_OUT
ENDCLASS.