SAP INPUT PARAMETER - Glossary



Get Example source ABAP code based on a different SAP table
  


VERSION 5 IN

input parameter
Formal parameter of a procedure to which the value of an actual parameter is passed at the time of a call and which is evaluated in the procedure. Input parameters for which pass by reference is defined must not be accessed with write access in the procedure. Input parameters are defined for methods and function modules using IMPORTING , which is why they are also called IMPORTING parameters.
BEGIN_SECTION VERSION 5 OUT For subroutines, input parameters are defined using USING and the latter are not protected against write access defined for pass by reference.
END_SECTION VERSION 5 OUT