Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How The ABAP Proxy method gets triggered

Former Member
0 Likes
608

Hi All,

I have created a ABAP Proxy for inbound interface.For this interface the data is coming from XI system.So i am writing the logic to read the XI data into an internal table and am populating the same data into a BAPI.

So my question is,once the XI system sends the data, Will this ABAP Proxy Method automatically gets trigger or Do we need to make any settings?

Please Help me As early as possible.

Thanks in advance

Regards

Srinivas Kodukula

2 REPLIES 2
Read only

Former Member
0 Likes
525

Hi srinivas,

Refer the below points for the configuration needed at R/3 side:

1. Create a HTTP connection in the business system using transaction SM59

2. Configuration Business system as local Integration Engine in SXMB_ADM

3. Connection between Business System and System Landscape Directory. For this check the RFC destinations LCRSAPRFC and SAPSLDAPI

4. Maintaining the SAP J2EE Connection Parameters for LCRSAPRFC and SAPSLDAPI in SAP J2EE engine

5. Maintain SLD access details in Transaction SLDAPICUST

Regards,

Kiran Bobbala

Read only

former_member611181
Participant
0 Likes
525

Follow all points as mentioned by Kiran for setting up.

For inbound proxies you don't need to do anything as long you proxy is syntactically correct and activated.

If you want to test/debug, go to SXMB_MONI and take one message corresponding to this interface. Right click on payload and download. Go to SPRoXY transaction and select your proxy(put a break-point wherever you want to debug) - go back click excute(F8) and provide this xml payload input file which you download. Then you can debug and check you code.