2014 Nov 07 10:48 AM
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.
2014 Nov 07 11:08 AM
Hi Volker,
If you use element info, the type will be automatically rendered from the method signature itself. So the type is clear and has not to be specified in the documentation, again.
Why would you like to add the type to ABAP Doc?
Michael
2014 Nov 07 11:08 AM
Hi Volker,
If you use element info, the type will be automatically rendered from the method signature itself. So the type is clear and has not to be specified in the documentation, again.
Why would you like to add the type to ABAP Doc?
Michael
2014 Nov 07 12:32 PM
Sorry, didn't check the method signatur in the rendered view. It is better in that way because then it is always up to date.
2014 Nov 07 1:39 PM