Sender :- SFTP
Receiver :- Proxy
Files are getting placed at Sender SFTP Folder all at once. SAP PO 7.5 Should pick the files sequentially and process with a delay of 5 seconds.
I did use first use :- Quality of Service as Exactly Once in Order by doing so even all the message will be picked up at once but they will be in a queue. Now use an udf in message mapping to create a delay. Just use Thread.sleep(3000); in UDF code and map it with any field or add this code to any existing UDF.
This option works well. But the issue occurs when messages gets into error at ECC side for some data issue. If the messages goes into error all the next messages don't get processed and be in scheduled status.
What can be done? How to achieve the successful logic for this?