How do I create a subroutine in SAP ABAP?
How do I create a subroutine in SAP ABAP? Subroutines can be defined using FORM and ENDFORM statements. PERFORM statement used to call the subroutine. PERFORM and FORM must contain the same number of parameters….Parameters in Subroutine – Actual parameters Formal parameters For Example – PERFORM s1 p1, p2, p3 For Example – FORM s1 […]