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

Export parameters in RFC function not transmitted ??

Former Member
0 Likes
853

Hello,

I created my own RFC-enabled function for reading employee data from one SAP system to another. It works fine in development system, so I moved it into test system for testing. My users are reporting that they see no data, so I checked the programme and indeed, there“s no information.

When I execute the function directly in system TSS it works fine, but when I call it from TPM (both test systems) calling programme does not get the information for Exporting and Changing parameters; however, using a table in Tables parameter it works !!

I tried then with function HR_GETEMPLOYEEDATA_FROMUSER and the problem happens again, which leads me to the conclusion that it is not me but something in the system or in the communications.

Has anyone had such experience ??

Thanks.

3 REPLIES 3
Read only

Former Member
0 Likes
573

Hi,

I got the same problem during RFC call.

Whenever You want to display data or move data in Internal Table Use the array.

e.g


If not it_table[] is initial.
.....
....
endif.

Donot use it_table in RFC it will work as Workarea.

Regards

Arbind

Read only

0 Likes
573

what ???

my problem is in the export parameters and not in internal tables.

additionally, it seems that some SAP functions are not being executed.

Read only

Former Member
0 Likes
573

I had to read directly the tables, instead of using SAP function which somehow do not work.