cancel
Showing results for 
Search instead for 
Did you mean: 

Outbound ABAP Proxy - calling a method?

Former Member
0 Kudos

Hi guys,

I need a quick answer.. When u use inbound ABAP proxy, the XI executes a method of ABAP Proxy class.. But when u want to use outbound ABAP proxy? You call method of ABAP proxy class with parameters and it passes data to XI? Which parameters u use, when u want to send data to XI from outbound proxy? Exporting or importing?

Points will be rewarded..

Thanx, Olian

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

you call the ABAP proxy calss in our report of r/3 . to that you have to write report proram.

CALL METHOD prxy->execute_asynchronous

EXPORTING

output = it.

commit work

check the blog for writing a report in R/3

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

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

Regards

Sreeram.G.Reddy

Former Member
0 Kudos

Hello,

What is "prxy" ? Is it the class's name ? Where is it defined in the R3 program ?

Thanks..

Answers (1)

Answers (1)

Shabarish_Nair
Active Contributor
0 Kudos

usual cases you will call the method inside a report and pass the parameters (both import and export in case a sync proxy).

ref:

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

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