cancel
Showing results for 
Search instead for 
Did you mean: 

SOAP ==> SAP PI ==> RFC

deva_gembali2
Participant
0 Kudos

Hi experts,

    Regarding RFC integration, i would like to check

SOAP send a lot of messages to SAP Pi , PI delivered all messages to SAP without errors but can't find in SAP.

Can you please suggest where can we find logs in SAP about RFC ?

deva

Accepted Solutions (0)

Answers (3)

Answers (3)

iaki_vila
Active Contributor
0 Kudos

Hi Deva,

You can plain to use a receiver proxy and inside to abap code to do the RFC call. In this way you can have the sxi_monitor messages in your ECC.

On the other hand if the RFC is a Z function you can do a Z table to store logs.

Regards.

Andrzej_Filusz
Contributor
0 Kudos

Hi Deva,

1. Have you checked your RFC communication channel?

2. You can add a small piece of code to your FM:

data: lv_flag type xfeld value space.

DO.

  IF lv_flag EQ 'X'.

     exit.

  ENDIF.

ENDDO.

In this way you will have an endless loop. You can connect to your process, change lv_flag value to 'X' and debug the rest of your code.

Best regards,

Andrzej Filusz

former_member182412
Active Contributor
0 Kudos

Hi Deva,

You cannot monitor RFC in ERP, this is the drawback of RFC. You need to check actual data if it update customer then check in customer table how many updated today.

Regards,

Praveen.