Search code examples
abap

Changing the subroutine template


In ABAP in SAPGUI (SE38 or SE80), if I write

perform test_form using p_var.

and double click on test_form, it will suggest that it creates the following subroutine for me.

*&---------------------------------------------------------------------*
*&      Form  TEST_FORM
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      -->P_P_VAR  text
*----------------------------------------------------------------------*
form TEST_FORM  using    p_p_var.

endform.                    " TEST_FORM

Is it possible for me to change this template?


Solution

  • The templates are defined in the table TSE05 with the key APP_OBJ= ADDM and - for FORM routines - the keyword PU.

    TSE05

    Place a break-point in the function module DETERMINE_BLOCK to observe the process in detail. Whether you want to modify the standard entries is up to you...