cancel
Showing results for 
Search instead for 
Did you mean: 

Proxy to File Scenario

Former Member
0 Kudos

Hi all,

I am following the example in this blog. /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy

I have generated the proxies and created the abap program


REPORT  Z_TEST_PROXY.

DATA prxy TYPE REF TO ZTBIT40CO_PROXY_INTERFACE_OB.
*
CREATE OBJECT prxy.
DATA it TYPE  ZTBIT40MT_EMPLOYEE.
TRY.
    it-MT_EMPLOYEE-EMP_NAME = 'Sravya'.
    it-MT_EMPLOYEE-EMPNO = '80101'.
    it-MT_EMPLOYEE-DEPARTMENT_NAME = 'NetWeaver'.

    CALL METHOD prxy->execute_asynchronous
      EXPORTING
        output = it.
     commit work.
     
  CATCH cx_ai_system_fault .
    DATA fault TYPE REF TO cx_ai_system_fault .
    CREATE OBJECT fault.
    WRITE 😕 fault->errortext.
ENDTRY.

The code runs without any error. However when i check using SXMB_MONI in the XI server, it did not receive any message.

How can i further debug this scenario?

Appreciate any help

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

You can check in SAP R/3's MONI and check in SMQ1 of SAP R/3 and SMQ2 of XI

Check this

/people/stefan.grube/blog/2006/07/28/xi-debug-your-inbound-abap-proxy-implementation

Debugging Proxies

Regards

Seshagiri

Former Member
0 Kudos

i have checked the Outbound Queue and SXMB_MONI of the ECC system and Inbound Queue of the XI server. Nothing is reflected in the status.

Any ideaS?

Answers (1)

Answers (1)

Former Member
0 Kudos
Former Member
0 Kudos

I did a SLDCHECK and found out that there is something wrong with the SLD connection

So i went to SDLAPICUST to add in the missing entry for my XI server.

It is working now

Appreciate your help.