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

PARAMETER_CONVERSION_ERROR in case of RFC

Former Member
0 Likes
1,055

Hi,

I am calling rfc function module FM1 with tables parameter where i have two tables, in the interface i have added two tables by referring structures.

FM1 interface

table1 like struct1 ( structure with enahncement category can be enhanced character or numeric )

table2 like struct2 ( structure with enahncement category can be enhanced character or numeric )

while calling function module in other system i have created same sort of structures and in my program i have two internal tables referring these strucutes.

data:

it1 type table of struct1,

it2 type table of struct2.

now i am calling rfc

call FM1 rfc destination lv_rfc

tables

table1 = it1

table2 = it2.

now if i see the trace following error occured:

an error occured while receiving complex parameters

why is this error coming?? is the data type of FM tables parameters are different than that of what i am sending???

i don't think so.. please suggest...

Hi,

I am calling rfc function module FM1 with tables parameter where i have two tables, in the interface i have added two tables by referring structures.

FM1 interface

table1 like struct1 ( structure with enahncement category can be enhanced character or numeric )

table2 like struct2 ( structure with enahncement category can be enhanced character or numeric )

while calling function module in other system i have created same sort of structures and in my program i have two internal tables referring these strucutes.

data:

it1 type table of struct1,

it2 type table of struct2.

now i am calling rfc

call FM1 rfc destination lv_rfc

tables

table1 = it1

table2 = it2.

now if i see the trace following error occured:

an error occured while receiving complex parameters

why is this error coming?? is the data type of FM tables parameters are different than that of what i am sending???

i don't think so.. please suggest...

2 REPLIES 2
Read only

Former Member
0 Likes
500

Hi,

Maybe this link will help.

Regards,

Ernesto.

Read only

0 Likes
500

Hi Ernesto,

its pretty much useful thread, though it did not help my problem, it is just my mistake that i missed out TABLES while calling FM so those two tables which i am passing are now part of EXPORTING from calling perspective which is wrong.. thats the reason.

Thanks,

Kranthi.