cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP PROXY

bhaskar_ghandikota
Participant
0 Kudos

How to use ABAP PROXY with ref to XI

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Bhaskar,

Please look at the follwoing blogs:

http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm

Client Proxy:

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

Activation of ABAP Proxies:

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

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

Communication between SAP System & Webservice Using Proxies

/people/siva.maranani/blog/2005/05/23/communication-between-sap-system-webservice-using-proxies

/people/swaroopa.vishwanath/blog/2006/12/28/send-rfc-to-sap-xi-150-asynchronous

Proxy Generation

http://help.sap.com/saphelp_nw04/helpdata/en/86/58cd3b11571962e10000000a11402f/content.htm

Smarter Approach for coding ABAP Proxies:

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

ABAP Proxy Runtime

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

ABAP Server proxies

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

Debugging of Inbound ABAP proxies

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

File to R/3 via ABAP Proxy

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

How to push data from BI to XI using proxy

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e698aa90-0201-0010-7982-b49...

How to push data into BW from XI using proxy

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/18dfe590-0201-0010-6b8b-d21...

Let us know in case you are working on any specific scenario.

Cheers,

Puneet

Former Member
0 Kudos

Hi Bhaskar Ghandikota ,

Proxy generation converts non-language-specific interface descriptions in WSDL into executable interfaces known as Proxies. Depending on the target programming language, you choose one of the following:1. Java Proxies. or 2. ABAP Proxies.

We can interface to XI through proxies. From WAS 6.20, proxy generation feature enables application systems to communicate with XI using proxies. Proxy generation enables you to create proxies in application systems. Proxies encapsulate the creation or parsing of XML messages and the communication with the relevant runtime components required to send or receive the messages.

There are two types of Proxies.

1. Java Proxies.

2. ABAP Proxies.

Java proxies are used when java applications needs to send and receive data and ABAP proxies are used when ABAP applications needs to send and receive data.

Proxy Generation

http://help.sap.com/saphelp_nw04/helpdata/en/86/58cd3b11571962e10000000a11402f/content.htm

ABAP Proxy Runtime

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

To activate ABAP proxies

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

Detailed step-by-step solution for ABAP proxies in XI

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

ABAP Server proxies

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

Debugging of Inbound ABAP proxies

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

File to R/3 via ABAP Proxy

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

How to push data from BI to XI using proxy

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e698aa90-0201-0010-7982-b49...

How to push data into BW from XI using proxy

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/18dfe590-0201-0010-6b8b-d21...

cheers!

gyanaraj

****Pls reward points if u find this helpful

Former Member
0 Kudos

hai,

i have a doubt....

i am doing the scenario of Proxy to JDBC

in which i need to develop SPROXY in R/3 or XI server ..

clarify regarding this...

remaining development part i have done..

regards,

siva

former_member335553
Active Contributor
0 Kudos

Always proxies need to be developed in application server.

As of the case it would be your R/3 system

Former Member
0 Kudos

Hi Bhaskar,

This is very open ended question, go to XI help for details.

For the time being i summarise some of the things for quick help.

1.For ABAP Proxy's go to transaction SPROXY of your application system i.e SAP system on WAS 620+ .

2. There it will show you all the message interface developed in the XI (Integration repository). SLD config of all the SAP system on 620+ is out of scope for this. This is required so that you can have IR objects reflected in your application system.

3. hoose your message interface in sproxy, rt click and choose create . it will generate the ABAP proxy (inbound/outbound) based on the message interface defined in IR i.e nothing but the ABAP calsses with DDIC structures and method EXECUTE_ASYNCHRONOUS/EXECUTE_SYNCHRONOUS based on the direction of Message interface defined in IR.

4.You have to implement the scenarion, like for outbound you can create a program calling the class which is created above and so on.

Hope this help. There are lot of documents for abap proxy. just have a look there.

Regards,

Satish

bhaskar_ghandikota
Participant
0 Kudos

Thanks Satish.

I am actually trying to look for some examples to work on

Former Member
0 Kudos

Yeah, do you guys have some sample program/s which use/s ABAP proxies (especially Inbound)

Former Member
0 Kudos

Hi ,

Please Go through this Links:

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

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

So that u can get some Idea on Proxies...

Thanks,

Kish.