Application Development 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: 

Can I link data definitions when downloading the program in PDF format in ABAP?

former_member712912
Discoverer
0 Kudos
94

Hi,

I want to download any program in ABAP code as PDF.

How can I go to the relevant code block by double-clicking on the object or form definitions in it?

For example, when I double-click the get_data form in the query below, I want to go inside the form automatically.

REPORT ZTEST_007.

START-OF-SELECTION.

PERFORM get_data.
*&---------------------------------------------------------------------*
*& Form GET_DATA
*&---------------------------------------------------------------------*
*& text
*&---------------------------------------------------------------------*
*& --> p1 text
*& <-- p2 text
*&---------------------------------------------------------------------*
FORM get_data .
SELECT *
FROM bkpf
INTO TABLE lt_bkpf
UP TO 25 ROWS.
ENDFORM.

0 REPLIES 0