cancel
Showing results for 
Search instead for 
Did you mean: 

RFC Sender in PI 7.3

Former Member
0 Kudos

Hi Experts,

We  are working on RFC to File Scenario in PI 7.3 . All SM59 connection type "3" and "T" are working .

IDOC to file sceanrio working perfectly.

As suggested by Michal,  We have changed the parameters  in NWA for this scenario

http://scn.sap.com/community/pi-and-soa-middleware/blog/2010/10/21/pixi-pi-73-new-java-based-idoc-ad...

As per Step 3 : - We are using Program ID - XI_IDOC_DEFAULT_PID in  Sender Adaptor

While executing, RFC module in  SE37,  We are getting error as "function module not found.

Do we need any special configuration for RFC adaptor ?

Kindly advise ?

Accepted Solutions (1)

Accepted Solutions (1)

iaki_vila
Active Contributor
0 Kudos

Hi Anshul,

Pay attention to the lowercase and uppercase characters in the program id. I think you have imported the RFC dummy interface correctly in PI.  This error seems that from R/3 doesnt find the RFC PI interface metadata, that could be because:

1. R/3 - PI connection problems, as you have other interfaces running, this can't be the issue.

2. The sm59 TCP/IP connection fails. Do you test this connection?, have you checked the gateway?

3. Error in ABAP code, That should to be

CALL FUNCTION 'your dummy RFC here'

  IN BACKGROUND TASK

  DESTINATION 'sm59 destination'

  TABLES

....

COMMIT WORK.

4. Have you activated the sender RFC communication channel?, have you monitored from RWB for any possible error?

Finally, you can check step by step in this wiki http://wiki.scn.sap.com/wiki/display/XI/RFC+to+FILE

Regards.

Answers (1)

Answers (1)

iaki_vila
Active Contributor
0 Kudos

Hi Anshul,

Are you using the program id in the RFC communication channel?, are you putting the destination in the abap code which call the RFC?

Regards.

Former Member
0 Kudos

Hi Vila,

Yes, I am taking program ID in Sender channel which is - XI_IDOC_DEFAULT_PID.

Also putting destination in the code which is RFC of type of "3".