Google News
logo
SAP ABAP - Interview Questions
What are the various types of parameters and how are they distinguished from one another?
There are mainly two types of parameters :
 
Formal parameters : This is basically defined when the subroutine gets defined alongside the FORM statement. 
 
Actual parameters : This is defined when the subroutine gets defined alongside the PERFORM statement.  
 
These can be distinguished by distinguishing the functionality. The data are passed to the subroutines with the help of the Input parameters and data are passed from the subordinates with the help of output parameters.
Advertisement