Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Queue Blockage In Proxy

Former Member
0 Likes
622

Hi ,

I am facing a problem in Queue Blockage in abap proxy.

Is there any way apart from manual unlocking of the queue.

i have some queues which is blocked in SAP and need a solution (through coding or any customization  ) to unlock those without manual intervention.

Any pointer will be helpfull.

1 REPLY 1
Read only

vadimklimov
Active Contributor
0 Likes
533

Hello Jitendra,

In proxy application systems, there are several automatic mechanisms to prevent long-term queue blocking:

1. Restart failed messages using ABAP program RSXMB_RESTART_MESSAGES. It is recommended to schedule it periodically (by default - each 5-10 minutes);

2. For Exactly Once scenarios, remove queue entries in status 'RETRY' from "normal" inbound queues (SMQ2) to "saved" inbound queues (SMQ3) . You can check SAP Note 1298448 for more information.

Please note that none of these mechanisms solve the root cause of the queue entry going to erroneous state (thus, the reason of proxy call being failed) which means that further analysis of the error should be performed manually: for example, by checking an error and trace of the corresponding XI message in tx. SXI_MONITOR.

Regards,
Vadim