SAP PASS BY REFERENCE - Glossary



Get Example source ABAP code based on a different SAP table
  


VERSION 5 IN

pass by reference
Method of passing data from actual parameters to formal parameters when the procedure is called, which is defined in the parameter interface of a procedure. Pass by reference does not create a local data object for the actual parameter. Instead the procedure is given a reference to the actual parameter during the call and works with the actual parameter itself. Input parameters passed by reference cannot be modified in the procedure. See also pass by value.
ABAP_MORE_INFO