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: 
Read only

ABAC doc

volker_schropp
Explorer
0 Likes
948

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
Read only

schneidermic0
Product and Topic Expert
Product and Topic Expert
0 Likes
903

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

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
Read only

schneidermic0
Product and Topic Expert
Product and Topic Expert
0 Likes
904

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

Read only

0 Likes
903

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.

Read only

schneidermic0
Product and Topic Expert
Product and Topic Expert
0 Likes
903

Don't worry