code pal for ABAP > Documentation > Combination of Output Parameters Check
This check searches for methods where a combination of EXPORTING
, CHANGING
and/or RETURNING
parameters is used.
Use just one sort of output type for each method.
In exceptional cases, you can suppress this finding by using the pseudo comment "#EC PARAMETER_OUT
which should be placed right after the method definition header:
CLASS class_name DEFINITION PUBLIC.
PUBLIC SECTION.
METHODS method_name
EXPORTING param1 TYPE c
CHANGING param2 TYPE c
RETURNING VALUE(result) TYPE string. "#EC PARAMETER_OUT
ENDCLASS.