Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

ABAC doc

volker_schropp
Explorer
0 Kudos
381

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.

1 ACCEPTED SOLUTION

schneidermic0
Product and Topic Expert
Product and Topic Expert
0 Kudos
336

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

3 REPLIES 3

schneidermic0
Product and Topic Expert
Product and Topic Expert
0 Kudos
337

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

0 Kudos
336

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.

schneidermic0
Product and Topic Expert
Product and Topic Expert
0 Kudos
336

Don't worry