cancel
Showing results for 
Search instead for 
Did you mean: 

Proxy acknowledgement

Former Member
0 Kudos

Hi,

we have an asynchronous scenario ABAP Proxy to ABAP Proxy.

We have configured the outbound proxy to request Application Acknowledgements.

In the inbound proxy we have the code to raise an exception and send back a negative application acknowledgement in case of failure of method EXECUTE_ASYNCHRONOUS execution.


RAISE EXCEPTION TYPE ZZEXCEPTION
EXPORTING
text = 'MESSAGE ERROR TEXT'
name = 'TEST'.

In case of successfull execution, a positive application acknowledgement is sent back automatically after the execution of EXECUTE_ASYNCHRONOUS.

So everythink works successfully.

Now we need to add some custom informations in the positive application acknowledgement. We have these informations (simple text) in the method EXECUTE_ASYNCHRONOUS of the inbound proxy.

It seems that this kind of activity is not possible, because the generation of the positive appl ack is done automatically after the execution of EXECUTE_ASYNCHRONOUS.

Do you know if it's possible, and eventually how to realize this?

Thank you in advance

Kind Regards,

Francesco

Accepted Solutions (1)

Accepted Solutions (1)

MichalKrawczyk
Active Contributor
0 Kudos

hi,

I don't think it's possible to send any additional text in standard

as you've noticed for positive acks

Regards,

michal

-


<a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

Answers (1)

Answers (1)

prabhu_s2
Active Contributor
0 Kudos

check if this link helps you

<a href="http://help.sap.com/saphelp_nw04/helpdata/en/f4/8620c6b58c422c960c53f3ed71b432/frameset.htm">http://help.sap.com/saphelp_nw04/helpdata/en/f4/8620c6b58c422c960c53f3ed71b432/frameset.htm</a>

Former Member
0 Kudos

Hi Prabhu,

I've already navigated to all the standard documentation.

This link was useful to setup the request for acknowledgment.

But this doesn't say noting on how to manipulate the content of positive application acknowledgment.

Best Regards,

Francesco