cancel
Showing results for 
Search instead for 
Did you mean: 

response RFC not return to ECC

Former Member
0 Kudos

Hello,

I've a interface synchronous. RFC1 (ECC) -> XI -> RFC2 (R3)

I see in SXMB_MONI the response to RFC1 with data, however, to ECC response is empty.

I had refresh caché, reimport the RFC1 and the problem continue,

Any idea?

Regards, Silvia

Accepted Solutions (0)

Answers (1)

Answers (1)

MichalKrawczyk
Active Contributor
0 Kudos

hi,

if you see it in PI and it's after mapping (or no mapping at all)

it means that it reached ECC

if you want to be able to SEE the call you should use ABAP proxy - this way you will be able

to monitor the proxy in ECC too as with RFC there is no monitoring at the ECC,

Regards,

Michal Krawczyk

Former Member
0 Kudos

Thanks Michal,

However, my interface have BPM I have understood that with BPM can not use proxy.

Other idea?

Regards,

Silvia

iaki_vila
Active Contributor
0 Kudos

Hi Silvia,

You could monitoring your BPE before it makes the RFC response, and in the RFC you could create a Z table (if you dont use a Z RFC you can wrap your standard RFC with a Z one) in order to log the requests and the responses.

Regards.

Former Member
0 Kudos

Thanks Iñaki,

I'm doing that, but I see the error before, when I call the function from ECC


CALL FUNCTION 'Z_XX'
     DESTINATION 'PI'
     EXPORTING
       pi_datos = i_datos

     IMPORTING
       po_return  = i_return.

break-point.

In the break-point i_return is empty, however in SXMB_MONI i can see value

Z_XX.response

    <i_return>

          <item>

                <status>OK</status>

           </item>

      <i_return>

    


Former Member
0 Kudos

Hi Silvia,

Are you sure po_return matches i_return?

cheers,

Edu