cancel
Showing results for 
Search instead for 
Did you mean: 

User Exit call

Former Member
0 Kudos

Hello friends,

how to call a client proxy from a user Exit.

Accepted Solutions (1)

Accepted Solutions (1)

prateek
Active Contributor
0 Kudos

Answers (3)

Answers (3)

Former Member
0 Kudos

Satya,

You can also refer these blogs for more info on creating and sending the data from outbound proxy to XI.

Have a look:

OutBound Proxy (Client Proxy)

/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

In your case you will write your code (data extraction logic) inside the exit rather than creating a Z progarm as mentioned in the above blogs. )

Regards,

Sarvesh

Former Member
0 Kudos

Hi,

For Client proxy (Outbound proxy) write the code (data extraction logic) inside the Exit and then pass the internal table data (extracted data) to the outbound method by using synchronous or asnynchronous method.

So whenever your exit will be called or program will reach at exit point your outbound proxy will send the data to XI. There is nothing special, only the thing is, when your exit point will be called/reached your outbound proxy will be trigerred.

Regards,

Sarvesh

Former Member
0 Kudos

HI,

specify ur requirement what u wanted to do....in detail...

Thnx

Chirag

Former Member
0 Kudos

my requirement is to call a ABAP proxy thru a User Exit.

Former Member
0 Kudos

Hi Satya,

Read Sharvesh`s response properly you would get the answer to your question.

How ever i would suggest that you make sure that before you trigger the proxy the transaction is commited.

Otherwise it could be the case that the proxy is triggered but the transaction is rolled back.

I would suggest the following ..

Inside your exit trigger a function module (processing type Update Module) .

btw which transaction are you using?

Regards,

Sumit