2023 May 09 9:42 AM
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.