ā2010 Feb 08 9:53 AM
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.
ā2010 Feb 08 9:59 AM
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
ā2010 Feb 08 10:33 AM
what ???
my problem is in the export parameters and not in internal tables.
additionally, it seems that some SAP functions are not being executed.
ā2010 Feb 08 3:48 PM
I had to read directly the tables, instead of using SAP function which somehow do not work.