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

RFC not getting data from XI

Former Member
0 Likes
686

hi,

in my scenario, XI is passing the data back to RFC, but in my program where i call the RFC, the data is not received. what could be the issue.

CALL FUNCTION 'ZFFF' DESTINATION 'XI'

TABLES

INP = aaa

OUT1 = bbb

OUT2 = ccc.

COMMIT WORK.

it was working fine before when i had only OUT1. Later I added OUT2 and then onwards I am not getting data for any of the tables. I have checked in XI, data is being passed out of XI to RFC. No issues in that.

something seems to have gone wrong in the RFC modfication or the RFC call. can anyone please help.

thks

hi,

in my scenario, XI is passing the data back to RFC, but in my program where i call the RFC, the data is not received. what could be the issue.

CALL FUNCTION 'ZFFF' DESTINATION 'XI'

TABLES

INP = aaa

OUT1 = bbb

OUT2 = ccc.

COMMIT WORK.

it was working fine before when i had only OUT1. Later I added OUT2 and then onwards I am not getting data for any of the tables. I have checked in XI, data is being passed out of XI to RFC. No issues in that.

something seems to have gone wrong in the RFC modfication or the RFC call. can anyone please help.

thks

4 REPLIES 4
Read only

Former Member
0 Likes
668

Hi,

Check the export import parameter declarations & data types in both RFC & XI.

Put a break point in RFC & check whether it is getting triggered.

Best regards,

Prashant

Read only

0 Likes
668

Checked. All is fine. RFC is triggered. XI is sending the result for the input value passed to XI. But my internal tables OUT1 and OUT2 r not populated !!

Read only

0 Likes
668

aaa, bbb and ccc are declared as the tables parameter of the RFC.

Read only

Former Member
0 Likes
668

resolved..issue was totally different