cancel
Showing results for 
Search instead for 
Did you mean: 

Acks

Former Member
0 Kudos

How many types of acks are there and wht is the use of that

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

you can generate 2 types of ack...

1)Application ack 2)Transport ack..

Check this for more info..

/people/michal.krawczyk2/blog/2006/06/22/xi-playing-with-the-file-adapters-acknowledgments

Answers (5)

Answers (5)

Former Member
0 Kudos

TX

former_member537867
Active Contributor
0 Kudos

Hi Satya,

Basically there r 4 types of ackmnts:

System acknowledgement

SystemErrorAckRequested

ApplicationAckRequested

ApplicationErrorAckRequested

IDoc sender adapter requests the following acknowledgements:

SystemErrorAckRequested

ApplicationAckRequested

ApplicationErrorAckRequested

File receiver adapter supports only system acknowledgements and system error acknowledgements if they are requested by the sender.

So you will get:

SystemErrorAck – when message has not reached the target system

AckRequestNotSupported – for all others acknowledgement types (your case is here)

For IDOC, you could have ALEAUD as an acknowledgment IDOC.

Check this document on handling IDOC acknowledgements. This might give you some pointers.

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f6d2d790-0201-0010-9382-b50...

have a look at the Alert Framework, which can be configured to send mails to specific persons if an interface processing fails.

http://help.sap.com/saphelp_nw04/helpdata/en/80/942f3ffed33d67e10000000a114084/content.htm

There are two types of JDBC acknowledgements Transport level and application level.

IF the JDBC call is asynchronous you can set up for transport level acknowlegement in the send step in ur BPM.

if the JDBC call is synchronous then JDBC adaptor will generate a response message with a tag update count, which gives you the number of rows that were updated.

refer to the following link, which details about reciever jdbc

http://help.sap.com/saphelp_nw04/helpdata/en/2e/96fd3f2d14e869e10000000a155106/content.htm

just check out these links

http://help.sap.com/saphelp_nw04/helpdata/en/29/345d3b7c32a527e10000000a114084/content.htm

http://help.sap.com/saphelp_nw04/helpdata/en/7b/94553b4d53273de10000000a114084/content.htm

The following link has entire configuration of Receiver XI Adapter (including acknowledgements)

http://help.sap.com/saphelp_nw04/helpdata/en/f4/0a1640a991c742e10000000a1550b0/content.htm

Regards,

Vinod.

Former Member
0 Kudos

There are two types of Acknowledgements:-

System acknowledgments used by the runtime environment to confirm that an asynchronous message has reached the receiver. for e.g in File Adapter, if ftp server is up and running/or Folder name exists etc

Application acknowledgments used to confirm that the asynchronous message has been successfully processed at the receiver. from SAP help.

Also refer -

http://help.sap.com/saphelp_nw2004s/helpdata/en/f4/8620c6b58c422c960c53f3ed71b432/content.htm

this is an interesting document for idoc acknowledgemet:

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f6d2d790-0201-0010-9382-b50...

Integration Porcess ack:

http://help.sap.com/saphelp_nw04/helpdata/en/43/65c42db39b0398e10000000a1553f6/content.htm

check the link for message ack

http://help.sap.com/saphelp_nw04/helpdata/en/c7/41e150f24147e1adf23050248ef0d8/frameset.htm

Note: reward points if solution found helpfull

Regards

Chandrakanth.k

Former Member
0 Kudos

Hi,

here 2 types of ACKs are there, one is Transport ACK and second one is Application ACK.

Transport ACK : it tells the data reached the target or not.

In SXMB_MONI we can view this status by watching the

ACK status field.

Application ACK : it tells the data reached the target or not and after reached to the target it processed success or not in the target system.

By using some settings in XI and ABAP we can get the Application ACK.

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f6d2d790-0201-0010-9382-b50...

Former Member
0 Kudos

Hi,

Thanks,

Madhu