cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP System Acknowledgement

Former Member
0 Kudos

Hi,

I am trying to implement system and application acknowledgement from Inbound Asyncronous ABAP proxy. I am unable to find out the classes and how to send response back to XI.

Can you please tell me how to send acknowledgment from ABAP proxies?

My proxies running in WAS 620 means R/3 4.7 system.

Thanks,

Gaurav Jain

Accepted Solutions (0)

Answers (1)

Answers (1)

Shabarish_Nair
Active Contributor
0 Kudos

<i>I am trying to implement system and application acknowledgement from Inbound Asyncronous ABAP proxy. I am unable to find out the classes and how to send response back to XI.</i>

>>>>

i am not aware of any way to trigger an ack for a proxy. I guess you cant. (lets see if anybody can come up with a way)

But then you can make your proxy <b>sync</b>, and sent back a message !!!

Former Member
0 Kudos

Looking at Stefan's blog

https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3531 [original link is broken] [original link is broken] [original link is broken] [original link is broken]

Ashyncronous ABAP Proxy can able to send 4 type of acknowledgement. I am trying to send those kind of acknowledgement means positive and negative system acknowledgement as well as application acknowledgement.

Former Member
0 Kudos

Hi,

The following URL might help. Even though it is for an asynch interface, the code for synch interface should be the same.

http://help.sap.com/saphelp_nw04/helpdata/en/f4/8620c6b58c422c960c53f3ed71b432/frameset.htm

Regards,

Bill

Former Member
0 Kudos

Actually in this url

  • Ask for transport acknowledgment

clear l_ack_request.

l_ack_request =

IF_WSPROTOCOL_ASYNC_MESSAGING=>CO_TRANSPORT_ACKNOWLEDGMENT.

lo_async_messaging->set_acknowledgment_requested( l_ack_request ).

for Transport acknowledgement I tried to find out Interface <b>IF_WSPROTOCOL_ASYNC_MESSAGING</b> its not there in WAS 620.