Application Development 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: 

string type export for RFC

Former Member
0 Kudos
955

Hello Friends,

I am trying to create a RFC with the export parameter of the String type.

But I got into following error message :

Reference parameters are not allowed with RFC

Is there any way to return the string type in the form of EXPORT or TABLE for the RFC ?

1 ACCEPTED SOLUTION

Former Member
0 Kudos
153

If you click the question mark icon on the dialog box that gives the message 'Reference parameters are not allowed with RFC' you will see the following self-explanatory text:

Diagnosis

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

Procedure

Change the reference parameter to a value parameter.

On the tabs for parameters in the FM, check the checkbox under column 'Pass Value'.

Hope this helps.

Thanks

Sanjeev

2 REPLIES 2

Former Member
0 Kudos
154

If you click the question mark icon on the dialog box that gives the message 'Reference parameters are not allowed with RFC' you will see the following self-explanatory text:

Diagnosis

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

Procedure

Change the reference parameter to a value parameter.

On the tabs for parameters in the FM, check the checkbox under column 'Pass Value'.

Hope this helps.

Thanks

Sanjeev

Former Member
0 Kudos
153

Use like :

string type string ,here select passing value option other wise you get message.

Thanks

Seshu