Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

What's the difference between reference parameter and value parameter.

Former Member
0 Likes
2,293

hey,expert

what parameter is reference parameter?

when I made the import in RFC function,the message as follows:

You have defined a reference parameter for a remotely called function module. However, only value parameters are allowed in this kind of function module.

can any expert tell how to solve this problem?

thank you.

kim heum

1 ACCEPTED SOLUTION
Read only

former_member195698
Active Contributor
0 Likes
1,016

A reference parameter : When a parameter is called by reference, the system points to the original parameter without making a copy of it. The function module works with and, if necessary, alters the original parameter and not a copy.

Make the parameter you have defined as "pass by Value".. There is a checkbox in the inteface definition for that..

1 REPLY 1
Read only

former_member195698
Active Contributor
0 Likes
1,017

A reference parameter : When a parameter is called by reference, the system points to the original parameter without making a copy of it. The function module works with and, if necessary, alters the original parameter and not a copy.

Make the parameter you have defined as "pass by Value".. There is a checkbox in the inteface definition for that..