cancel
Showing results for 
Search instead for 
Did you mean: 

Proxy

Former Member
0 Kudos

hi all,

could any one explain what are the steps in calling abap proxy..

regards

Joshi

Accepted Solutions (0)

Answers (3)

Answers (3)

prabhu_s2
Active Contributor
0 Kudos

Proxies -> 1. abap 2. Java

There are two types of proxies in ABAP:

1)ABAP Client Proxy

2)ABAP Server Proxy.

ABAP Client Proxies are used to communicate the R/3 system to XI. And where as ABAP Server proxy is used to communiate the XI system to the R/3 system.

ABAP Client Proxies are created using the Outbound Message Interfaces and ABAP Server Proxies are created using the Inbound Message Interfaces in the Application system using sproxy Tcode.

These proxies will directly hit the integration engine of the XI server and thus reduces the use of adapters.

When you generate the proxies using Tcode SPROXY in ur application system then u have to:

1. write your own abap code in the interface to manage data if that is an Inbound Message Interface.

2. In the case of Outbound interface then write a report and invoke the appropriate method (eg:execute_asynchronous or execute_synchronous) to trigger the proxy.

The great advantage of proxies is XI native protocol usage. It doesn't require more ABAP. The ABAP code is the same you would put in a function module.

http://help.sap.com/saphelp_nw2004s/helpdata/en/86/58cd3b11571962e10000000a11402f/frameset.htm

/people/ravikumar.allampallam/blog/2005/08/14/choose-the-right-adapter-to-integrate-with-sap-systems

Message was edited by:

Prabhu S

Former Member
0 Kudos
Former Member
0 Kudos

Nitesh,

You need to some settings for enabling the ABAP proxy. Once you this you will find all your interfaces in the SAP R/3 system . To view the interfaces you have to use the transaction SPROXY.

Choose the interface you want to use and right click on it and say generate proxy and you will see a class getting generated.

these blogs will explain you the above steps in detail, Just follow them and you should be able to create it without any trouble.

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

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

/people/vanita.thareja2/blog/2006/05/23/bpm-sending-message-asynchronously-and-getting-the-response-from-synchronous-system-using-abap-proxies

Hope it helps.

Thanks and regards

Arvind