Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
sindhura_kusum
Explorer
0 Kudos

    Scope:

Extended EOIO error handling

Introduction::    

When it comes to message processing, SAP XI has been provided enough flexibility in message processing. Message in a particular sequence or EOIO is one of them. In some critical Business requirements, end systems will restrict middleware to process the messages in a particular sequence. In that case it is mandatory for a middleware to impose EOIO sequencing on message processing and to ensure successful end to end delivery of these messages in the same sequence otherwise processed data will be redundant and will be of no use. Messages in EOIO will process one by one on the basis of Sequence number. After successful processing of first message, system will process next message.

Challenge:

The biggest challenge is if by any reason First message went in “System error”, “Holding” or “To be delivered” state then all other message which are supposed to be processed after that particular message, will be sitting in adapter queues and will create the backlog in system. Unless until first message is not getting re processed /canceled, message processing for that particular interface will not resume.

So every time we have to cancel the error message manually. If it’s in production, what’s the solution will be. Then came to my mind, “Extended EOIO error Handling” which will be useful for Advanced adapter engines(AAE).

Solution::

In the SAP PI we have a concept called “Extended EOIO error handling”. So we thought it will make our life easier.

Here to remember is, handling(how it handles the messages).In handling we have 2 options: Remove from Queue and Copy to error queue

Remove from Queue: The failing EOIO message removed which means it is taken out of sequential processing. So it will have the Quality of Service as EO (Exactly Once) and will be processed accordingly.

Copy to error queue: Here the error queue name should be given, so based on that queue name the failing message is copied to a new sequence with EOIO sequential error handling.Adittion to this, threshold value also has to be configured. If the current queue depth is reached then the EOIO error handling will be skipped.

Procedure::

Before configuring at adapter level, it has to be configured globally.

  • Go to NWA-->Configuration-->Infrastructure-->JAVA system Properties-->services-->messaging system
  • Go to extended details-->“messaging.eoio.extendedErrorHandling.enabled has to be set true.

  • At the adapter level, In the sender channels, we have QOS. First select it as EOIO.

1.    Select EOIO ,and name the queue

2.    In NWA-->SOA-->monitoring-->Extended EOIO error handling

3.    Click on create

4.    Give the queue name which you have already given in the Sender channel.

5.    Give the receiver component name.

6.    Select either Remove from queue or Copy to error queue

7.    Now the configuration part is done.

SAP PI Moni Status:::

Copy to error queue and Remove from queue

4 Comments
Labels in this area