Difference Between Call By Value and Call By Reference?
Answer Posted / prateek g
The call by value system copies the actual parameters to
actual parameters and then uses them i.e. the function
creates its own copy of values, any change in
these values will not be reflected
in the original values.
The call by reference system refers the actual parameters
i.e. these doesn’t creates a copy of original parameters,
any change in these parameters will be reflected back in
original parameters.
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
how to read the standard field value in your custom program.
In BDC, data transfer is done success in foreground mode but if we done the same in background mode it shows errors. What is the reason?
The extract statements in field groups can be used before or after processing the sort statements. State true or false. : abap modularization
Explain the uses of the simple maintenance interface? : sap abap hr
How can you display frames (horizontal and vertical lines) in lists?
What is locking? : abap data dictionary
How would you define the exponents for a type ‘f’ field?
Which transaction code can I used to analyze the performance of ABAP program.?
How can you distinguish between different kinds of parameters?
What are the functional areas? User groups?
What is the disadvantage of a call by reference? : abap modularization
Value table VS check Table.
What is system-land-scape of your project?
What are types of select statements?
If I have put commit in badi implementation class after update, is it allowed? Also if some standard functionality already implemented an update and now i m doing update and if it fails, what will be the impact of commit?