When I edit code in Eclipse ADT, it will change CHANGING parameters of unrelated methods to IMPORTING.
So I have a view that contains the following:
METHODS meth1 IMPORTING a CHANGING b. METHODS meth2 CHANGING c. METHODS meth3. ... METHOD meth3. "I change some code here ENDMETHOD.
When I perform my edit in meth3, methods meth1 and meth2 are changed to
METHODS meth1 IMPORTING a IMPORTING b. METHODS meth2 IMPORTING c.
Personally I also prefer RETURNING or references to CHANGING parameters, but I think that's not right...?
Unfortunately I am unable to search for SAP notes at the moment.