cancel
Showing results for 
Search instead for 
Did you mean: 

SXI_DEMO_ACK_READ

former_member474221
Participant
0 Kudos

hi

i am working on a Proxy to Proxy Asynchronous scenario and I have requested for system and app ack from the abap report on the sender side...

message in moni shows all the ack requested as "true " ( e.g systenackreq = "true " etc....)

I also created a receiver XI channel for my sender

however i wanted to read what ack's were actually sent back to the sender...so i used the report SXI_DEMO_ACK_READ

however it only shows me ack ids as 72 and 77......what does these ids 72 and 77 mean???

Accepted Solutions (1)

Accepted Solutions (1)

former_member184681
Active Contributor
0 Kudos

Hi Hema,

Ack 72 is Application OK, ack 77 is System OK. For details, please see the constant Attributes in interface class IF_XMS_PERSIST_CONST in se24 in the backend system:

Ack Status App OK	'72'
Ack Status Transient App Error	'73'
Ack Status Permanent App Error	'83'
Ack Status Sys OK (=Transport OK)	'77'
Ack Status Transient Sys Error	'75'
Ack Status Permanent Sys Error	'85'
Ack Status ACK Not Supported	'88'
Ack Status (Persist): ACK Message Not Yet Received	'71'
Ack Status (Persist): ACK of Split Message	'80'
Ack Status (Analyze): Ack Tree Incomplete	'81'
Ack Status (Persist): Request Canceled	'90'

Hope this helps,

Greg

Answers (0)