cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP Proxy

Former Member
0 Kudos

Hi Group,

Could you please let me know how to invoke ABAP Client proxy from Custom Function Module.

Accepted Solutions (1)

Accepted Solutions (1)

JoelTrinidade
Active Contributor
0 Kudos

Hi,

ABAP Proxies in XI(Client Proxy)

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

Regards

joel

Answers (5)

Answers (5)

jyothi_anagani
Active Contributor
0 Kudos

Hi,

It will Really help you. Step by Step pocedure is there.

https://www.sdn.sap.com/irj/scn/wiki?path=/pages/viewpage.action&pageid=72123509

Thanks.

Former Member
0 Kudos

Hi,

Please refer the below thread for more about ABAP proxies.

https://forums.sdn.sap.com/click.jspa?searchID=25239480&messageID=6927748

Regards,

Tiny

former_member181962
Active Contributor
0 Kudos

Hi,

Once you generate the PROXY for your outbound interface in SPROXY transaction, you would get a CLASS and an empty method execute_asynchronous (Or execute_synchronous if the interface is synchronous).

YOu have to write code in empty method to get the data and populate the interface parameters.

Activate the method and class.

Then in your function module, you can call your proxy class' method like this

call method <Classname>=><method name>

Regards,

Ravi kanth Talagana

Former Member
0 Kudos

Hi,

see this

[https://wiki.sdn.sap.com/wiki/display/XI/ABAPClientProxytoABAPServerProxy+Scenario]