cancel
Showing results for 
Search instead for 
Did you mean: 

Sproxy working fine but no messages received in XI

Former Member
0 Kudos

Hi All,

We are connecting ECC 6.0 to XI 3.0 system.

We have the SPROXY connection configured and we are able to create service interfaces without a problem . One scenario is to send Sales order data as an output to a third party system. I have created the outbound proxy in SPROXY and created a calling program for it.

I run the calling program and it runs without an error in the execute method. However, i dont see any data in SXMB_MONI. Could anybody shed light on the problem here ? I have no problems in importing content from XI to transaction SPROXY, yet my data is not transferring over to the XI system.

All help will be greatly appreciated.

Below is the calling program im using :

data : obj_ref type ref to ZCO_MI_SALEORDERDATA_FROM_SAP,

wa_output type ZMT_SALEORDERDATA_FROM_SAP,

wa_vbak type vbak.

start-of-selection.

create object obj_ref.

select single * from vbap into corresponding fields of wa_vbak where vbeln eq p_sales.

wa_output-MT_SALEORDERDATA_FROM_SAP-ORDER_NUMBER = p_sales.

wa_output-MT_SALEORDERDATA_FROM_SAP-SHIP_TO_PARTY = wa_vbak-kunnr.

wa_output-MT_SALEORDERDATA_FROM_SAP-SOLD_TO_PARTY = wa_vbak-kunnr.

.

.

.

.

TRY.

CALL METHOD obj_ref->MI_SALEORDERDATA_FROM_SAP

EXPORTING

OUTPUT = wa_output.

.

CATCH CX_AI_SYSTEM_FAULT .

ENDTRY.

Thanks,

Joe.

Accepted Solutions (1)

Accepted Solutions (1)

Shabarish_Nair
Active Contributor
0 Kudos

goto SXMB_MONI of ECC (Not XI) and see the status of your message.

Is it successful there?

Answers (2)

Answers (2)

Former Member
0 Kudos

Anoop and Shabarish,

Thank you for your replies. I went to the local SXMB_MONI and found that the user id I was using for the XI_integration server destination did not have the required permissions. I changed to my name and apparently i have all the required permissions, so its working fine now .

Thanks,

Joe

Former Member
0 Kudos

Hi,

First,Test the proxy (F8 Key) created inside ECC system, if u get any error over there.

Secondly, if error is not there, then put Transaction code - WSCONFIG in XI3.0 system into debugging code..And then trigger ur proxy, watch out if a new session opens up in debugger mode in XI 3.0 system or not...

Thanks,

Anoop