Hello,
if I want to add the parameters of a method with STRG+1 (quick assist), it would be nice to add also the type automatically:
Situation with method appendno. ABAP doc added:
"! Append without separator.
appendno
IMPORTING iw_value TYPE clike,
After pressing STRG+1:
"! Append without separator.
"! @parameter iw_value |
appendno
IMPORTING iw_value TYPE clike,
Better:
"! Append without separator.
"! @parameter iw_value TYPE clike |
appendno
IMPORTING iw_value TYPE clike,
Is this somehow possible?
If I want to do that manually, can I put a link inside, so I can navigate to the object?
Thank you.