ABAP modularization technique Subroutines
Subroutines are procedural blocks within an ABAP program, used for local modularization. Subroutines are called using statement PERFORM and defined using statement FORM.. ENDFORM. We can define subroutine in an ABAP program and call the subroutine from the same program (internal subroutine) of some another program ( external subroutine ). It is advised not to […]
ABAP modularization technique Subroutines Read More »