cancel
Showing results for 
Search instead for 
Did you mean: 

Synchronous Proxy

Former Member
0 Kudos

I need a synchronous proxy scenario where XI sends a request to Core and a core returns some results to XI. Can anyone give me the idea i.e what will be the design and configuration objects I have to make.

Thanks

Abhishek

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Abhishek,

As per your requirement you can write a synchronous proxy as shown below:

Hi,

***Do synchronous client proxy as shown below:

CALL METHOD lo_clientProxy-><b>execute_synchronous</b>

EXPORTING output = ls_request

IMPORTING input = ls_response.

for more info check this:

http://help.sap.com/saphelp_nw04/helpdata/en/02/265c3cf311070ae10000000a114084/frameset.htm

Check how to configure proxy in the below links:

/people/siva.maranani/blog/2005/04/03/abap-server-proxies

/people/sravya.talanki2/blog/2006/07/28/smarter-approach-for-coding-abap-proxies

/people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies

/people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy

File to R/3 via ABAP Proxy with good example

/people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy

http://help.sap.com/saphelp_nw2004s/helpdata/en/48/d5a1fe5f317a4e8e35801ed2c88246/frameset.htm

Regards,

Sarvesh

Former Member
0 Kudos

What system is it connecting to?

This can have an impact...

If it is R.3 you could use a Bapi which already returns data.

Former Member
0 Kudos

Can u please explain me what impact it can cause. It is an manugistic system.

Can u please help me?

Thanks

Abhishek

Former Member
0 Kudos

Abhishek,

I suppose u're developing scenario XXsystem->XI->R/3(ECC) right?

Then create scenario as usual. Then go to target R/3 (ECC), transaction SPROXY, generate proxy to your sync interface (inbound). This proxy is a class and use it in your ABAP development to return desired data and return them to XI.

Peter